Photo by Joey Csunyo on Unsplash



OVERVIEW

This markup introduces you to my EDA project on all the governors of the United Sates of America. Working with this data set will give me insight on which governor served the shortest term or which political affiliation is dominating. More importantly, it will also help to develop my skills.


THE DATA

I obtained this data set from Kaggle.com and is part of a competition. It has all of the U.S. governors that served or were elected as as governor for each sate. Territories or certain states of the Thirteen Colonies that had the office of “president” are not included.

  - There are 8 columns:
      StateFull
      StateAbbrev
      GovernorNumber
      GovernorNmae
      TookOffice
      LeftOffice
      PartyAffiliation
      PartyAbbrev
  - In CSV format

This data set is owned by Brandon Conrady on Kaggle and it was last updated on May 12, 2021. It is open to the public and its license is CC0: Public Domain. You can view more about the data set and Brandon’s work here:_https://www.kaggle.com/brandonconrady_.


LIBRARY DECLARATIONS
library(tidyverse)
library(tidyr)
library(stringr)
library(knitr)
library(kableExtra)
library(lubridate)
library(janitor)
library(ggplot2)
library(RColorBrewer)
library(paletteer)
library(ggthemes)
library(ggridges)
library(sessioninfo)


DATA SET
StateGovernors %>% 
  glimpse()
## Rows: 2,587
## Columns: 8
## $ StateFull        <chr> "Alabama", "Alabama", "Alabama", "Alabama", "Alabama"~
## $ StateAbbrev      <chr> "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL",~
## $ GovernorNumber   <int> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16~
## $ GovernorName     <chr> "William Wyatt Bibb", "Thomas Bibb", "Israel Pickens"~
## $ TookOffice       <chr> "November 9, 1819", "July 10, 1820", "November 9, 182~
## $ LeftOffice       <chr> "July 10, 1820", "November 9, 1821", "November 25, 18~
## $ PartyAffiliation <chr> "Democratic-Republican", "Democratic-Republican", "De~
## $ PartyAbbrev      <chr> "DR", "DR", "DR", "D", "D", "D", "D", "D", "D", "D", ~
StateGovernors %>% 
  head()
## # A tibble: 6 x 8
##   StateFull StateAbbrev GovernorNumber GovernorName       TookOffice  LeftOffice
##   <chr>     <chr>                <int> <chr>              <chr>       <chr>     
## 1 Alabama   AL                       1 William Wyatt Bibb November 9~ July 10, ~
## 2 Alabama   AL                       2 Thomas Bibb        July 10, 1~ November ~
## 3 Alabama   AL                       3 Israel Pickens     November 9~ November ~
## 4 Alabama   AL                       4 John Murphy        November 2~ November ~
## 5 Alabama   AL                       5 Gabriel Moore      November 2~ March 3, ~
## 6 Alabama   AL                       6 Samuel Moore       March 3, 1~ November ~
## # ... with 2 more variables: PartyAffiliation <chr>, PartyAbbrev <chr>
StateGovernors %>% 
  select(everything()) %>% 
  summarise_all(list(~sum(is.na(.) ) ) )
## # A tibble: 1 x 8
##   StateFull StateAbbrev GovernorNumber GovernorName TookOffice LeftOffice
##       <int>       <int>          <int>        <int>      <int>      <int>
## 1         0           0              0            0          0          0
## # ... with 2 more variables: PartyAffiliation <int>, PartyAbbrev <int>


TIDYING

I am going to convert the TookOffice and LeftOffice columns to dates. Then I’ll change StateFull and GovernorName to have FullName added to the end for the new naming convention. In addition to, GovernorNumber will be renamed to governor_seat_order and columns will be lowercase and separated with an underscore.

StateGov_df <- StateGovernors %>%
  select(StateFull,
         StateAbbrev,
         GovernorNumber,
         GovernorName,
         TookOffice,
         LeftOffice,
         PartyAffiliation,
         PartyAbbrev) %>%
  rename(StateFullName = StateFull,
         GovernorSeatOrder = GovernorNumber,
         GovernorFullName = GovernorName) %>%
  clean_names(., "snake")
#............. confirm ......................
StateGov_df %>% 
  colnames()
## [1] "state_full_name"     "state_abbrev"        "governor_seat_order"
## [4] "governor_full_name"  "took_office"         "left_office"        
## [7] "party_affiliation"   "party_abbrev"

I see a few dates with November 31st but there are only 30 days in the month of November. This will cause this date and others, to result with an NA during the as.Date conversion. I did a Google search for the governor that served this term to find their correct term dates. So far, it seems that November 31, 1835 should in fact be November 21, 1835. So, I will replace it before converting.

#....................................... view ....................................
StateGov_df %>% 
  select(governor_full_name,
         took_office,
         left_office)
## # A tibble: 2,587 x 3
##    governor_full_name     took_office       left_office      
##    <chr>                  <chr>             <chr>            
##  1 William Wyatt Bibb     November 9, 1819  July 10, 1820    
##  2 Thomas Bibb            July 10, 1820     November 9, 1821 
##  3 Israel Pickens         November 9, 1821  November 25, 1825
##  4 John Murphy            November 25, 1825 November 25, 1829
##  5 Gabriel Moore          November 25, 1829 March 3, 1831    
##  6 Samuel Moore           March 3, 1831     November 26, 1831
##  7 John Gayle             November 26, 1831 November 31, 1835
##  8 Clement Comer Clay     November 31, 1835 July 17, 1837    
##  9 Hugh McVay             July 17, 1837     November 21, 1837
## 10 Arthur Pendleton Bagby November 21, 1837 November 22, 1841
## # ... with 2,577 more rows
#....................................... replace ....................................
StateGov_df$took_office [StateGov_df$took_office == "November 31, 1835"] <- "November 21, 1835"
StateGov_df$left_office [StateGov_df$left_office == "November 31, 1835"] <- "November 21, 1835"

I want to take the extra step in getting rid of any extra spaces because it too can cause issues during the conversion.

#............. trim & remove white spaces ......................
StateGov_df %>% 
  select(governor_full_name,
         took_office,
         left_office) %>%
  mutate(took_office = str_squish(took_office),
         left_office = str_squish(left_office))
## # A tibble: 2,587 x 3
##    governor_full_name     took_office       left_office      
##    <chr>                  <chr>             <chr>            
##  1 William Wyatt Bibb     November 9, 1819  July 10, 1820    
##  2 Thomas Bibb            July 10, 1820     November 9, 1821 
##  3 Israel Pickens         November 9, 1821  November 25, 1825
##  4 John Murphy            November 25, 1825 November 25, 1829
##  5 Gabriel Moore          November 25, 1829 March 3, 1831    
##  6 Samuel Moore           March 3, 1831     November 26, 1831
##  7 John Gayle             November 26, 1831 November 21, 1835
##  8 Clement Comer Clay     November 21, 1835 July 17, 1837    
##  9 Hugh McVay             July 17, 1837     November 21, 1837
## 10 Arthur Pendleton Bagby November 21, 1837 November 22, 1841
## # ... with 2,577 more rows
#................ convert & save .............................
StateGov_df %>%
  mutate(took_office = as.Date(took_office,
                               format = "%B %d, %Y"),
         left_office = as.Date(left_office,
                               format = "%B %d, %Y")) -> StateGov_df
#................ view ........
StateGov_df %>% 
  select(governor_full_name,
         took_office,
         left_office) %>% 
  head(n = 13)
## # A tibble: 13 x 3
##    governor_full_name     took_office left_office
##    <chr>                  <date>      <date>     
##  1 William Wyatt Bibb     1819-11-09  1820-07-10 
##  2 Thomas Bibb            1820-07-10  1821-11-09 
##  3 Israel Pickens         1821-11-09  1825-11-25 
##  4 John Murphy            1825-11-25  1829-11-25 
##  5 Gabriel Moore          1829-11-25  1831-03-03 
##  6 Samuel Moore           1831-03-03  1831-11-26 
##  7 John Gayle             1831-11-26  1835-11-21 
##  8 Clement Comer Clay     1835-11-21  1837-07-17 
##  9 Hugh McVay             1837-07-17  1837-11-21 
## 10 Arthur Pendleton Bagby 1837-11-21  1841-11-22 
## 11 Benjamin Fitzpatrick   1841-11-22  1845-12-10 
## 12 Joshua Lanier Martin   1845-12-10  1847-12-16 
## 13 Reuben Chapman         1847-12-16  1849-12-17

Glad the columns converted successfully but there are now NAs.

#................... NaNs ..............................
StateGov_df %>% 
  select(everything()) %>% 
  summarise_all(list(~sum(is.na(.) ) ) )
## # A tibble: 1 x 8
##   state_full_name state_abbrev governor_seat_order governor_full_na~ took_office
##             <int>        <int>               <int>             <int>       <int>
## 1               0            0                   0                 0          21
## # ... with 3 more variables: left_office <int>, party_affiliation <int>,
## #   party_abbrev <int>
#................... class .............................
class(StateGov_df$took_office)
## [1] "Date"
class(StateGov_df$left_office)
## [1] "Date"


…CONTINUED

There are 21 values in the took_office and left_office columns, that are resulting in NAs during the as.Date conversion. So I am going to see which rows are NAs at this stage. Afterwards, I’ll then replace, convert, and save them again.

#................... took office ..............................
StateGov_df %>%
  filter(is.na(took_office)) %>%
  kbl() %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>%
  column_spec(3, bold = T,
              color = "#969292",
              background = paletteer_c("ggthemes::Classic Blue", 21)) %>%
  column_spec(5, bold = T,
              color = "#969292",
              background = paletteer_c("ggthemes::Classic Red", 21)) %>% 
  row_spec(0, bold = TRUE) %>% 
  row_spec(21,
           background = "#EDF8B1") %>% 
  scroll_box(height = "300px")
state_full_name state_abbrev governor_seat_order governor_full_name took_office left_office party_affiliation party_abbrev
Arkansas AR 11 Isaac Murphy NA 1868-07-02 Independent I
Delaware DE 57 Charles Layman Terry Jr.  NA 1969-01-21 Democratic D
Delaware DE 62 Dale Edward Wolf NA 1993-01-19 Republican R
Indiana IN 6 David Wallace NA 1840-12-09 Whig W
Louisiana LA 24 Henry Clay Warmoth NA 1872-12-09 Republican R
Massachusetts MA 36 Alexander Hamilton Rice NA 1879-01-02 Republican R
Massachusetts MA 73 Michael Stanley Dukakis NA 1991-01-03 Democratic D
Michigan MI 44 William Grawn Milliken NA 1983-01-01 Republican R
Minnesota MN 30 Elmer Lee Andersen NA 1963-03-25 Republican R
Mississippi MS 33 John Marshall Stone NA 1896-01-20 Democratic D
New Hampshire NH 18 William Badger NA 1836-06-02 Democratic D
New Jersey NJ 24 George Franklin Fort NA 1854-01-17 Democratic D
New Jersey NJ 43 Franklin Murphy NA 1905-01-17 Republican R
Pennsylvania PA 41 Raymond Philip Shafer NA 1971-01-19 Republican R
Rhode Island RI 67 Frank R. Licht NA 1973-01-02 Democratic D
South Carolina SC 10 Edward Rutledge NA 1800-01-23 Federalist F
Vermont VT 1 Thomas Chittenden NA 1797-08-25 Independent I
Washington WA 18 John Dennis Spellman NA 1985-01-16 Republican R
West Virginia WV 25 Cecil Harland Underwood NA 1961-01-16 Republican R
Wyoming WY 12 William Bradford Ross NA 1924-10-02 Democratic D
Wyoming WY 33 Mark Gordon NA NA Republican R
#................... left office ..............................
StateGov_df %>%
  filter(is.na(left_office)) %>%
  kbl() %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>% 
  column_spec(3, bold = T,
              color = "#969292",
              background = paletteer_c("ggthemes::Classic Blue", 21)) %>% 
  column_spec(6, bold = T,
              color = "#969292",
              background = paletteer_c("ggthemes::Classic Red", 21)) %>%
  row_spec(0, bold = TRUE) %>% 
  row_spec(21,
           background = "#EDF8B1") %>% 
  scroll_box(height = "300px")
state_full_name state_abbrev governor_seat_order governor_full_name took_office left_office party_affiliation party_abbrev
Alabama AL 46 Seth Gordon Persons 1951-01-15 NA Democratic D
Delaware DE 56 Elbert Nostrand Carvel 1961-01-17 NA Democratic D
Delaware DE 61 Michael Newbold Castle 1985-01-15 NA Republican R
Indiana IN 5 Noah Noble 1831-12-07 NA Whig W
Louisiana LA 23 Joshua Gabriel Baker 1868-01-02 NA Democratic D
Massachusetts MA 35 William Gaston 1875-01-07 NA Democratic D
Massachusetts MA 72 Edward Joseph King 1979-01-04 NA Democratic D
Michigan MI 43 George Wilcken Romney 1963-01-01 NA Republican R
Minnesota MN 29 Orville Lothrop Freeman 1955-01-05 NA Democratic D
Mississippi MS 32 Robert Lowry 1882-01-29 NA Democratic D
New Hampshire NH 17 Samuel Dinsmoor 1831-06-02 NA Democratic D
New Jersey NJ 23 Daniel Haines 1848-01-18 NA Democratic D
New Jersey NJ 42 Foster McGowan Voorhees 1899-01-17 NA Republican R
Pennsylvania PA 40 William Warren Scranton 1963-01-15 NA Republican R
Rhode Island RI 66 John Lester Hubbard Chafee 1963-01-01 NA Republican R
South Carolina SC 9 Charles Pinckney 1796-12-08 NA Democratic-Republican DR
Washington WA 17 Dixy Lee Ray 1977-01-12 NA Democratic D
West Virginia WV 24 William Casey Marland 1953-01-19 NA Democratic D
Wyoming WY 11 Robert Davis Carey 1919-01-06 NA Republican R
Wyoming WY 32 Matthew Hansen Mead 2011-01-03 NA Republican R
Wyoming WY 33 Mark Gordon NA NA Republican R


REVISIT - imported dataframe

I’m reviewing the original data set to find the 42 dates that are NAs, but this method lacks a condition or two because of the duplicate governor seat numbers. Also, this syntax results with a tibble of 46x8 and this warning:

GovernorNumber == c(“11”, “57”, “62”, “6”, “24”, “36”, “73”, : longer object length is not a multiple of shorter object length.

I’m not sure if or how this warning might impact the results but I’ll continue exploring and fixing issues if or when they happen.

#........................ NAs viewable in Kable table ...................... 
StateGovernors %>%
  filter(GovernorNumber == c("11", "57", "62", "6", "24", "36", "73", "44", "30", 
                             "33", "18", "24", "43", "41", "67", "10", "1", "18", 
                             "25", "12", "33", "46", "56", "61", "5", "23", "35",
                             "72", "43", "29", "32", "23", "42", "40", "66", "9",
                             "17", "24", "11", "32", "33")) %>%
  select(everything()) %>% 
  kbl() %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>% 
  column_spec(3, bold = TRUE,
              color = "#ffffff",
              background = "#4F91B4") %>% 
  row_spec(0, bold = TRUE) %>%
  scroll_box(height = "300px")
StateFull StateAbbrev GovernorNumber GovernorName TookOffice LeftOffice PartyAffiliation PartyAbbrev
Alabama AL 18 Thomas Hill Watts Sr.  December 1, 1863 May 3, 1865 Whig W
Alaska AK 5 Jay Sterner Hammond December 2, 1974 December 6, 1982 Republican R
Arizona AZ 18 Raul Hector Castro January 6, 1975 October 20, 1977 Democratic R
Arkansas AR 5 Richard C. Byrd January 10, 1849 April 19, 1849 Democratic D
Arkansas AR 17 Thomas James Churchill January 13, 1881 January 13, 1883 Democratic D
Arkansas AR 30 Joseph Taylor Robinson January 16, 1913 March 8, 1913 Democratic D
Colorado CO 25 William Herbert Adams January 11, 1927 January 10, 1933 Democratic D
Colorado CO 40 William Forrester Owens January 12, 1999 January 9, 2007 Republican R
Delaware DE 24 William Barkley Cooper January 19, 1841 January 21, 1845 Whig W
Delaware DE 33 Gove Saulsbury March 1, 1965 January 17, 1871 Democratic D
Georgia GA 33 John Forsyth November 7, 1927 November 4, 1829 Democratic-Republican DR
Idaho ID 18 Chase Addison Clark January 6, 1941 January 4, 1943 Democratic D
Iowa IA 32 Leo Elthon November 21, 1954 January 13, 1955 Republican R
Kansas KS 29 Andrew Frank Schoeppel January 11, 1943 January 13, 1947 Republican R
Kentucky KY 12 James Turner Morehead February 21, 1834 August 30, 1836 National Republican NR
Kentucky KY 32 William O’Connell Bradley December 10, 1895 December 12, 1899 Republican R
Kentucky KY 33 William Sylvester Taylor December 12, 1899 January 31, 1900 Republican R
Kentucky KY 56 Martha Layne Collins December 13, 1983 December 8, 1987 Democratic D
Maine ME 36 Alonzo Garcelon January 8, 1879 January 17, 1880 Democratic D
Maine ME 43 Henry Bradstreet Cleaves January 4, 1893 January 2, 1897 Republican R
Maryland MD 61 Francis Preston Blair Lee III June 4, 1977 January 15, 1979 Democratic D
Massachusetts MA 67 John Anthony Volpe January 5, 1961 January 3, 1963 Republican R
Michigan MI 9 Robert McClelland January 1, 1852 March 7, 1853 Democratic D
Michigan MI 43 George Wilcken Romney January 1, 1963 Janaury 22, 1969 Republican R
Minnesota MN 25 Harold Edward Stassen January 2, 1939 April 27, 1943 Republican R
Minnesota MN 40 Mark Brandt Dayton January 3, 2011 January 7, 2019 Democratic D
Mississippi MS 25 William Lewis Sharkey June 13, 1865 October 16, 1865 Independent I
Mississippi MS 40 Lee Maurice Russell January 18, 1920 January 18, 1924 Democratic D
Missouri MO 46 Warren Eastman Hearnes January 11, 1965 January 8, 1973 Democratic D
New Hampshire NH 10 Levi Woodbury June 5, 1823 June 3, 1824 Democratic-Republican DR
New Jersey NJ 24 George Franklin Fort Janaury 21, 1851 January 17, 1854 Democratic D
New Jersey NJ 41 David Ogden Watkins October 18, 1898 January 17, 1899 Republican R
New York NY 23 Edwin Denison Morgan December 31, 1858 December 31, 1862 Republican R
North Carolina NC 62 William Kerr Scott January 6, 1949 January 8, 1953 Democratic D
North Dakota ND 1 John Miller November 20, 1889 January 7, 1891 Republican R
Ohio OH 12 Robert Lucas December 7, 1832 December 12, 1836 Democratic D
Ohio OH 32 Rutherford Birchard Hayes January 10, 1876 March 2, 1877 Republican R
Ohio OH 33 Thomas Lowry Young March 2, 1877 January 14, 1878 Republican R
Ohio OH 56 Thomas John Herbert January 13, 1947 January 10, 1949 Republican R
Rhode Island RI 24 William Warner Hoppin May 2, 1854 May 26, 1857 Whig W
Rhode Island RI 33 Henry Lippitt May 25, 1875 May 29, 1877 Republican R
South Carolina SC 62 Martin Frederick Ansel January 15, 1907 January 17, 1911 Democratic D
Texas TX 18 Oran Milo Roberts January 21, 1879 January 16, 1883 Democratic D
Utah UT 12 Scott Milne Matheson Jr.  January 3, 1977 January 7, 1985 Democratic D
West Virginia WV 36 James Conley Justice II January 16, 2017 January 13, 2025 Democratic D
Wisconsin WI 10 Lucius Fairchild January 1, 1866 January 1, 1872 Republican R


copied dataframe DATE COLUMNS

I’ve decided to do the took_office and left_office columns individually because placing the two inside the same condition of the filter() or even indexing with the & operator resulted with one row. Which is not how I want it to be displayed.

#................... took office ..........................
StateGov_df %>%
  filter(is.na(took_office)) %>%
  kbl() %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>% 
  column_spec(3, bold = T,
              color = "#969292",
              background = paletteer_c("ggthemes::Classic Blue", 21)) %>%
  column_spec(5, bold = T,
              color = "#969292",
              background = paletteer_c("ggthemes::Classic Red", 21)) %>%
  row_spec(0, bold = TRUE) %>% 
  row_spec(21,
           background = "#EDF8B1") %>% 
  scroll_box(height = "300px")
state_full_name state_abbrev governor_seat_order governor_full_name took_office left_office party_affiliation party_abbrev
Arkansas AR 11 Isaac Murphy NA 1868-07-02 Independent I
Delaware DE 57 Charles Layman Terry Jr.  NA 1969-01-21 Democratic D
Delaware DE 62 Dale Edward Wolf NA 1993-01-19 Republican R
Indiana IN 6 David Wallace NA 1840-12-09 Whig W
Louisiana LA 24 Henry Clay Warmoth NA 1872-12-09 Republican R
Massachusetts MA 36 Alexander Hamilton Rice NA 1879-01-02 Republican R
Massachusetts MA 73 Michael Stanley Dukakis NA 1991-01-03 Democratic D
Michigan MI 44 William Grawn Milliken NA 1983-01-01 Republican R
Minnesota MN 30 Elmer Lee Andersen NA 1963-03-25 Republican R
Mississippi MS 33 John Marshall Stone NA 1896-01-20 Democratic D
New Hampshire NH 18 William Badger NA 1836-06-02 Democratic D
New Jersey NJ 24 George Franklin Fort NA 1854-01-17 Democratic D
New Jersey NJ 43 Franklin Murphy NA 1905-01-17 Republican R
Pennsylvania PA 41 Raymond Philip Shafer NA 1971-01-19 Republican R
Rhode Island RI 67 Frank R. Licht NA 1973-01-02 Democratic D
South Carolina SC 10 Edward Rutledge NA 1800-01-23 Federalist F
Vermont VT 1 Thomas Chittenden NA 1797-08-25 Independent I
Washington WA 18 John Dennis Spellman NA 1985-01-16 Republican R
West Virginia WV 25 Cecil Harland Underwood NA 1961-01-16 Republican R
Wyoming WY 12 William Bradford Ross NA 1924-10-02 Democratic D
Wyoming WY 33 Mark Gordon NA NA Republican R


#.................... left office ....................
StateGov_df %>%
  filter(is.na(left_office)) %>%
  kbl() %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>% 
  column_spec(3, bold = T,
              color = "#969292",
              background = paletteer_c("ggthemes::Classic Blue", 21)) %>%
  column_spec(6, bold = T,
              color = "#969292",
              background = paletteer_c("ggthemes::Classic Red", 21)) %>%
  row_spec(0, bold = TRUE) %>% 
  row_spec(21,
           background = "#EDF8B1") %>% 
  scroll_box(height = "300px")
state_full_name state_abbrev governor_seat_order governor_full_name took_office left_office party_affiliation party_abbrev
Alabama AL 46 Seth Gordon Persons 1951-01-15 NA Democratic D
Delaware DE 56 Elbert Nostrand Carvel 1961-01-17 NA Democratic D
Delaware DE 61 Michael Newbold Castle 1985-01-15 NA Republican R
Indiana IN 5 Noah Noble 1831-12-07 NA Whig W
Louisiana LA 23 Joshua Gabriel Baker 1868-01-02 NA Democratic D
Massachusetts MA 35 William Gaston 1875-01-07 NA Democratic D
Massachusetts MA 72 Edward Joseph King 1979-01-04 NA Democratic D
Michigan MI 43 George Wilcken Romney 1963-01-01 NA Republican R
Minnesota MN 29 Orville Lothrop Freeman 1955-01-05 NA Democratic D
Mississippi MS 32 Robert Lowry 1882-01-29 NA Democratic D
New Hampshire NH 17 Samuel Dinsmoor 1831-06-02 NA Democratic D
New Jersey NJ 23 Daniel Haines 1848-01-18 NA Democratic D
New Jersey NJ 42 Foster McGowan Voorhees 1899-01-17 NA Republican R
Pennsylvania PA 40 William Warren Scranton 1963-01-15 NA Republican R
Rhode Island RI 66 John Lester Hubbard Chafee 1963-01-01 NA Republican R
South Carolina SC 9 Charles Pinckney 1796-12-08 NA Democratic-Republican DR
Washington WA 17 Dixy Lee Ray 1977-01-12 NA Democratic D
West Virginia WV 24 William Casey Marland 1953-01-19 NA Democratic D
Wyoming WY 11 Robert Davis Carey 1919-01-06 NA Republican R
Wyoming WY 32 Matthew Hansen Mead 2011-01-03 NA Republican R
Wyoming WY 33 Mark Gordon NA NA Republican R


TIDYING REVISITED

As I stated before, the previous syntax wasn’t ideal. So I think adding an additional column to GovernorNumber should yield the results I want.

I will also point out that some dates were written as %B %y (Month & year) instead of %B %d, %y (Month day, year) or they have invalid days like, December 41, 1992. There are different kinds of issues that resulted in NAs during the as.Date conversion, but I’ve highlighted a couple in the table below.

#........................ NAs viewable in Kable table ......................
StateGovernors %>%
  filter(GovernorNumber %in% 
           c("11", "57", "62", "6", "24", "36", "73", "44", "30", "33", "18", "24",
             "43", "41", "67", "10", "1", "18", "25", "12", "33", "46", "56", "61",
             "5", "23", "35", "72", "43", "29", "32", "17", "23", "42", "40", "66",
             "9", "17", "24","11", "32", "33"
             ),
         GovernorName %in% 
           c("Isaac Murphy", "Charles Layman Terry Jr.", "Dale Edward Wolf",
             "David Wallace","Henry Clay Warmoth", "Alexander Hamilton Rice",
             "Michael Stanley Dukakis", "William Grawn Milliken",
             "Elmer Lee Andersen", "John Marshall Stone", "William Badger",
             "George Franklin Fort", "Franklin Murphy", "Raymond Philip Shafer",
             "Frank R. Licht", "Edward Rutledge", "Thomas Chittenden",
             "John Dennis Spellman", "Cecil Harland Underwood",
             "William Bradford Ross", "Mark Gordon", "Seth Gordon Persons",
             "Elbert Nostrand Carvel", "Michael Newbold Castle", "Noah Noble",
             "Joshua Gabriel Baker", "William Gaston", "Edward Joseph King",
             "George Wilcken Romney", "Orville Lothrop Freeman", "Robert Lowry",
             "Samuel Dinsmoor", "Daniel Haines", "Foster McGowan Voorhees",
             "William Warren Scranton", "John Lester Hubbard Chafee",
             "Charles Pinckney", "Dixy Lee Ray", "William Casey Marland",
             "Robert Davis Carey", "Matthew Hansen Mead","Mark Gordon")
         ) %>%
  select(GovernorNumber, GovernorName, TookOffice, LeftOffice) %>%
  kbl() %>% 
  kable_classic("hover", "condensed", full_width = F, html_font = "Optima") %>%
  row_spec(0, bold = TRUE) %>% 
  row_spec(2, bold = TRUE, color = "white", background = "#800026") %>%
  row_spec(8, bold = TRUE, color = "white", background = "#BD0026") %>%
  row_spec(21, bold = TRUE, color = "white", background = "#253494") %>%
  row_spec(43, bold = TRUE, color = "white", background = "#081D58") %>%
  scroll_box(height = "300px")
GovernorNumber GovernorName TookOffice LeftOffice
46 Seth Gordon Persons January 15, 1951 January 17 1955
11 Isaac Murphy January 1864 July 2, 1868
56 Elbert Nostrand Carvel January 17, 1961 January 19 1965
57 Charles Layman Terry Jr.  January 19 1965 January 21, 1969
61 Michael Newbold Castle January 15, 1985 December 41, 1992
62 Dale Edward Wolf December 41, 1992 January 19, 1993
5 Noah Noble December 7, 1831 Dedcember 6, 1837
6 David Wallace Dedcember 6, 1837 December 9, 1840
23 Joshua Gabriel Baker January 2, 1868 Juine 27, 1868
24 Henry Clay Warmoth Juine 27, 1868 December 9, 1872
35 William Gaston January 7, 1875 January 1876
36 Alexander Hamilton Rice January 1876 January 2, 1879
72 Edward Joseph King January 4, 1979 Janaury 6, 1983
73 Michael Stanley Dukakis Janaury 6, 1983 January 3, 1991
43 George Wilcken Romney January 1, 1963 Janaury 22, 1969
44 William Grawn Milliken Janaury 22, 1969 January 1, 1983
29 Orville Lothrop Freeman January 5, 1955 Janaury 2, 1961
30 Elmer Lee Andersen Janaury 2, 1961 March 25, 1963
32 Robert Lowry January 29, 1882 Janaury 13, 1890
33 John Marshall Stone Janaury 13, 1890 January 20, 1896
17 Samuel Dinsmoor June 2, 1831 June 5 1834
18 William Badger June 5 1834 June 2, 1836
23 Daniel Haines January 18, 1848 Janaury 21, 1851
24 George Franklin Fort Janaury 21, 1851 January 17, 1854
40 Foster McGowan Voorhees January 31, 1898 October 18, 1898
42 Foster McGowan Voorhees January 17, 1899 Janaury 21, 1902
43 Franklin Murphy Janaury 21, 1902 January 17, 1905
40 William Warren Scranton January 15, 1963 Janaury 17, 1967
41 Raymond Philip Shafer Janaury 17, 1967 January 19, 1971
66 John Lester Hubbard Chafee January 1, 1963 Janaury 7, 1969
67 Frank R. Licht Janaury 7, 1969 January 2, 1973
6 Charles Pinckney January 26, 1789 December 5, 1792
9 Charles Pinckney December 8, 1796 Dercember 18, 1798
10 Edward Rutledge Dercember 18, 1798 January 23, 1800
1 Thomas Chittenden October 1790 August 25, 1797
17 Dixy Lee Ray January 12, 1977 Janaury 14, 1981
18 John Dennis Spellman Janaury 14, 1981 January 16, 1985
24 William Casey Marland January 19, 1953 Janaury 14, 1957
25 Cecil Harland Underwood Janaury 14, 1957 January 16, 1961
32 Cecil Harland Underwood January 13, 1997 January 15, 2001
11 Robert Davis Carey January 6, 1919 Janaury 1, 1923
12 William Bradford Ross Janaury 1, 1923 October 2, 1924
32 Matthew Hansen Mead January 3, 2011 Janaury 7, 2019
33 Mark Gordon Janaury 7, 2019 Janaury 7, 2023

Just re-reading in the data set and assigning it to a variable.

#........... rename & clean again ...................
StateGov_df <- StateGovernors %>%
  select(StateFull,
         StateAbbrev,
         GovernorNumber,
         GovernorName,
         TookOffice,
         LeftOffice,
         PartyAffiliation,
         PartyAbbrev) %>%
  rename(StateFullName = StateFull,
         GovernorSeatOrder = GovernorNumber,
         GovernorFullName = GovernorName) %>%
  clean_names(., "snake")

I’m replacing the dates that are impacting the two date columns. I used Nga.org to cross-reference. Dates with missing days will be searched for from their website and entered into my script. For all other date replacements, I will make sure to focus on misspellings and punctuations. I am also going to create another data frame that will show the errors before they’re corrected and converted.

#........................... took office ..............................
StateGov_df$took_office [StateGov_df$took_office == "November 31, 1835"] <- "November 21, 1835"
StateGov_df$took_office [StateGov_df$took_office == "January 1864"] <- "April 18,1864"
StateGov_df$took_office [StateGov_df$took_office == "December 41, 1992"] <- "December 31, 1992"
StateGov_df$took_office [StateGov_df$took_office == "Juine 27, 1868"] <- "June 27, 1868"
StateGov_df$took_office [StateGov_df$took_office == "January 1876"] <- "January 6, 1876"
StateGov_df$took_office [StateGov_df$took_office == "October 1790"] <- "October 13, 1790"
StateGov_df$took_office [StateGov_df$took_office == "Dedcember 6, 1837"] <- "December 6, 1837"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 22, 1969"] <- "January 22, 1969"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 2, 1961"] <- "January 2, 1961"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 21, 1851"] <- "January 21, 1851"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 21, 1902"] <- "January 21, 1902"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 17, 1967"] <- "January 17, 1967"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 7, 1969"] <- "January 7, 1969"
StateGov_df$took_office [StateGov_df$took_office == "Dercember 18, 1798"] <- "December 18, 1798"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 14, 1981"] <- "January 14, 1981"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 1, 1923"] <- "January 1, 1923"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 7, 2019"] <- "January 7, 2019"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 14, 1957"] <- "January 14, 1957"
StateGov_df$took_office [StateGov_df$took_office == "January 19 1965"] <- "January 19, 1957"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 6, 1983"] <- "January 6, 1983"
StateGov_df$took_office [StateGov_df$took_office == "Janaury 13, 1890"] <- "January 13, 1890"
StateGov_df$took_office [StateGov_df$took_office == "June 5 1834"] <- "June 5, 1834"
#........................... left office ..............................
StateGov_df$left_office [StateGov_df$left_office == "November 31, 1835"] <- "November 21, 1835"
StateGov_df$left_office [StateGov_df$left_office == "Dedcember 6, 1837"] <- "December 6, 1837"
StateGov_df$left_office [StateGov_df$left_office == "Juine 27, 1868"] <- "June 27, 1868"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 6, 1983"] <- "January 6, 1983"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 22, 1969"] <- "January 22, 1969"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 2, 1961"] <- "January 2, 1961"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 13, 1890"] <- "January 13, 1890"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 17, 1967"] <- "January 17, 1967"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 7, 1969"] <- "January 7, 1969"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 14, 1981"] <- "January 14, 1981"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 14, 1957"] <- "January 14, 1957"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 1, 1923"] <- "January 1, 1923"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 7, 2019"] <- "January 7, 2019"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 7, 2023"] <- "January 7, 2023"
StateGov_df$left_office [StateGov_df$left_office == "January 1876"] <- "January 6, 1876"
StateGov_df$left_office [StateGov_df$left_office == "January 17 1955"] <- "January 17, 1955"
StateGov_df$left_office [StateGov_df$left_office == "January 19 1965"] <- "January 19, 1965"
StateGov_df$left_office [StateGov_df$left_office == "December 41, 1992"] <- "December 31, 1992"
StateGov_df$left_office [StateGov_df$left_office == "June 5 1834"] <- "June 5, 1834"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 21, 1851"] <- "January 21, 1851"
StateGov_df$left_office [StateGov_df$left_office == "Janaury 21, 1902"] <- "January 21, 1902"
StateGov_df$left_office [StateGov_df$left_office == "Dercember 18, 1798"] <- "December 18, 1798"
#.............. additional dataframe .......................
StateGovErrors_df <- StateGov_df

These are the dates that are being replaced because the data isn’t accurate and results with negative calculations.

#........................... took office ..............................
StateGov_df$took_office [StateGov_df$took_office == "December 1, 2021"] <- "December 1, 1900"
StateGov_df$took_office [StateGov_df$took_office == "November 7, 1927"] <- "November 7, 1827"
StateGov_df$took_office [StateGov_df$took_office == "January 16, 1955"] <- "January 16, 1855"
StateGov_df$took_office [StateGov_df$took_office == "October 1, 1949"] <- "October 1, 1849"
StateGov_df$took_office [StateGov_df$took_office == "March 1, 1965"] <- "March 1, 1865"
StateGov_df$took_office [StateGov_df$took_office == "January 14, 1947"] <- "January 14, 1943"
StateGov_df$took_office [StateGov_df$took_office == "January 12, 1937"] <- "January 12, 1933"
StateGov_df$took_office [StateGov_df$took_office == "January 12, 1943"] <- "January 12, 1933"
StateGov_df$took_office [StateGov_df$took_office == "January 14, 1947"] <- "January 14, 1941"
StateGov_df$took_office [StateGov_df$took_office == "January 14, 1943"] <- "January 14, 1941"
#........................... left office ..............................
StateGov_df$left_office [StateGov_df$left_office == "March 4, 1821"] <- "March 4, 1921"
StateGov_df$left_office [StateGov_df$left_office == "January 18, 1838"] <- "January 18, 1938"
StateGov_df$left_office [StateGov_df$left_office == "January 5, 1837"] <- "January 5, 1937"
StateGov_df$left_office [StateGov_df$left_office == "January 14, 1941"] <- "January 14, 1937"
StateGov_df$left_office [StateGov_df$left_office == "January 14, 1947"] <- "January 14, 1937"
StateGov_df$left_office [StateGov_df$left_office == "January 14, 1947"] <- "January 14, 1943"
StateGov_df$left_office [StateGov_df$left_office == "December 1, 1791"] <- "December 1, 1794"
StateGov_df$left_office [StateGov_df$left_office == "January 14, 1937"] <- "January 14, 1947"
StateGov_df$left_office [StateGov_df$left_office == "January 14, 1937"] <- "January 14, 1943"
#............. trim & remove white spaces ......................
StateGov_df %>% 
  select(governor_full_name,
         took_office,
         left_office) %>%
  mutate(took_office = str_squish(took_office),
         left_office = str_squish(left_office))
## # A tibble: 2,587 x 3
##    governor_full_name     took_office       left_office      
##    <chr>                  <chr>             <chr>            
##  1 William Wyatt Bibb     November 9, 1819  July 10, 1820    
##  2 Thomas Bibb            July 10, 1820     November 9, 1821 
##  3 Israel Pickens         November 9, 1821  November 25, 1825
##  4 John Murphy            November 25, 1825 November 25, 1829
##  5 Gabriel Moore          November 25, 1829 March 3, 1831    
##  6 Samuel Moore           March 3, 1831     November 26, 1831
##  7 John Gayle             November 26, 1831 November 21, 1835
##  8 Clement Comer Clay     November 21, 1835 July 17, 1837    
##  9 Hugh McVay             July 17, 1837     November 21, 1837
## 10 Arthur Pendleton Bagby November 21, 1837 November 22, 1841
## # ... with 2,577 more rows

No more NAs!

#................... NAs ..............................
StateGov_df %>% 
  select(everything()) %>% 
  summarise_all(list(~sum(is.na(.) ) ) )
## # A tibble: 1 x 8
##   state_full_name state_abbrev governor_seat_order governor_full_na~ took_office
##             <int>        <int>               <int>             <int>       <int>
## 1               0            0                   0                 0           0
## # ... with 3 more variables: left_office <int>, party_affiliation <int>,
## #   party_abbrev <int>
#................ convert & save .............................
StateGov_df %>%
  mutate(took_office = as.Date(took_office,
                               format = "%B %d, %Y"),
         left_office = as.Date(left_office,
                               format = "%B %d, %Y")) -> StateGov_df


WRITE FILE

QUESTIONS:

  1. Show governors that share the same seat number.

  2. What is the earliest inaugural date?

  3. How many distinct party_affiliations are there?

  4. Which state has the most governors so far?

  5. Which governor had the shortest term served?

  6. What is the inaugural pattern for each state?

Governors that share the same seat number

Inauguration Order is for the seat numbers and Governors is for the total governor count.

GovernorSeats <- StateGov_df %>% 
  group_by(Inauguration = governor_seat_order) %>% 
  summarise(Governors = n_distinct(governor_full_name),
            Governors = n(),
            .groups = "rowwise") %>% 
  ungroup()

GovernorSeats %>% 
  kbl(caption = "Governor Seats ") %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>%
  row_spec(0, bold = TRUE) %>% 
  scroll_box(height = "300px")
Governor Seats
Inauguration Governors
1 50
2 50
3 50
4 50
5 50
6 50
7 50
8 50
9 49
10 49
11 49
12 49
13 49
14 49
15 48
16 48
17 48
18 48
19 47
20 47
21 47
22 47
23 47
24 46
25 46
26 45
27 45
28 44
29 43
30 43
31 42
32 42
33 41
34 37
35 37
36 37
37 36
38 36
39 35
40 35
41 34
42 32
43 32
44 30
45 30
46 29
47 28
48 27
49 26
50 23
51 23
52 22
53 22
54 22
55 22
56 22
57 22
58 20
59 19
60 19
61 19
62 17
63 17
64 15
65 14
66 14
67 13
68 12
69 12
70 12
71 11
72 11
73 11
74 11
75 10
76 8
77 7
78 7
79 7
80 6
81 5
82 5
83 4
84 4
85 4
86 3
87 3
88 3
89 3
90 3
91 1

figure.1

#........... graph ................................
fig1 <- ggplot(GovernorSeats,
               aes(x = Inauguration, y = Governors,
                   group = Governors,
                   fill = "#f25449")) +
  geom_density_ridges2(aes(point_fill = "black"),
                      color = "#660000",
                      rel_min_height = 0.07,
                      jittered_points = TRUE,
                      position = "raincloud",
                      alpha = 0.7) +
  xlab("chair numbers") +
  ylab("governors") +
  xlim(c(0, 91)) +
  theme_minimal() +
  theme(legend.position = "none") +
  ggtitle("Chairs Shared by Governors")
  
fig1

answer

It would make sense that the lower the seat number the higher the governor count would be. As in chair number 91 having one governor served or serving.


What are the earliest and latest inaugural dates?

GovernorTermDates <- StateGov_df %>%
  group_by(State = state_full_name) %>% 
  summarise(Governor = governor_full_name,
            Affiliation = party_affiliation,
            Served = difftime(left_office,
                              took_office,
                              units = c("weeks")),
            Sworn_In = took_office,
            Left_Office = left_office,
            .groups = "rowwise") %>%
  mutate_at(vars(Sworn_In, Left_Office),
            list(year, month, day)) %>%
  ungroup() %>% 
  arrange(Sworn_In)

round(as.double(GovernorTermDates$Served),
                digits = -0.0001) -> GovernorTermDates$Served


view/rename/save new variables

#........... view ................................
GovernorTermDates %>% 
  colnames()
##  [1] "State"           "Governor"        "Affiliation"     "Served"         
##  [5] "Sworn_In"        "Left_Office"     "Sworn_In_fn1"    "Left_Office_fn1"
##  [9] "Sworn_In_fn2"    "Left_Office_fn2" "Sworn_In_fn3"    "Left_Office_fn3"
#........... rename & save ................................
GovernorTermDates %>% 
  select(State, Governor, Affiliation, Served,
         Sworn_In, Left_Office, Sworn_In_fn1, Left_Office_fn1,
         Sworn_In_fn2, Left_Office_fn2,
         Sworn_In_fn3, Left_Office_fn3) %>% 
  rename(Sworn_In_Year = "Sworn_In_fn1",
         Left_Office_Year = "Left_Office_fn1",
         Sworn_In_Month = "Sworn_In_fn2",
         Left_Office_Month = "Left_Office_fn2",
         Sworn_In_Day = "Sworn_In_fn3",
         Left_Office_Day = "Left_Office_fn3") -> GovernorTermDates

GovernorTermDates %>% 
  kbl(caption = "Governor Term Details") %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>%
  row_spec(0, bold = TRUE) %>% 
  scroll_box(height = "300px")
Governor Term Details
State Governor Affiliation Served Sworn_In Left_Office Sworn_In_Year Left_Office_Year Sworn_In_Month Left_Office_Month Sworn_In_Day Left_Office_Day
Connecticut Jonathan Trumbull Sr.  Independent 763 1769-10-01 1784-05-13 1769 1784 10 5 1 13
Rhode Island Nicholas Cooke Independent 130 1775-11-07 1778-05-04 1775 1778 11 5 7 4
Georgia Archibald Bulloch Independent 57 1776-01-22 1777-02-22 1776 1777 1 2 22 22
Virginia Patrick Henry Independent 151 1776-07-06 1779-06-01 1776 1779 7 6 6 1
New Jersey William Livingston Federalist 725 1776-08-31 1790-07-25 1776 1790 8 7 31 25
North Carolina Richard Caswell Independent 179 1776-11-12 1780-04-20 1776 1780 11 4 12 20
Georgia Button Gwinnett Independent 9 1777-03-04 1777-05-08 1777 1777 3 5 4 8
Maryland Thomas Johnson Independent 138 1777-03-21 1779-11-12 1777 1779 3 11 21 12
Georgia John Adam Treutlen Independent 35 1777-05-08 1778-01-10 1777 1778 5 1 8 10
New York George Clinton Democratic-Republican 935 1777-07-30 1795-06-30 1777 1795 7 6 30 30
Georgia John Houstoun Independent 50 1778-01-10 1778-12-29 1778 1778 1 12 10 29
Rhode Island William Greene Independent 417 1778-05-04 1786-05-03 1778 1786 5 5 4 3
South Carolina John Rutledge Independent 160 1779-01-09 1782-01-31 1779 1782 1 1 9 31
Virginia Thomas Jefferson Independent 105 1779-06-01 1781-06-03 1779 1781 6 6 1 3
Georgia John Wereat Independent 12 1779-08-06 1779-11-01 1779 1779 8 11 6 1
Georgia George Walton Independent 9 1779-11-01 1780-01-04 1779 1780 11 1 1 4
Maryland Thomas Sim Lee Independent 158 1779-11-12 1782-11-22 1779 1782 11 11 12 22
Georgia Richard Howly Independent 5 1780-01-04 1780-02-05 1780 1780 1 2 4 5
Georgia George Wells Independent 1 1780-02-06 1780-02-16 1780 1780 2 2 6 16
Georgia Stephen Heard Independent 78 1780-02-18 1781-08-18 1780 1781 2 8 18 18
North Carolina Abner Nash Independent 62 1780-04-20 1781-06-26 1780 1781 4 6 20 26
Massachusetts John Hancock Independent 225 1780-10-25 1785-02-17 1780 1785 10 2 25 17
Virginia William Fleming Independent 1 1781-06-03 1781-06-12 1781 1781 6 6 3 12
Virginia Thomas Nelson Jr.  Independent 23 1781-06-12 1781-11-22 1781 1781 6 11 12 22
North Carolina Thomas Burke Independent 43 1781-06-26 1782-04-22 1781 1782 6 4 26 22
Georgia Nathan Brownson Independent 20 1781-08-18 1782-01-03 1781 1782 8 1 18 3
Virginia David Jameson Independent 1 1781-11-22 1781-11-30 1781 1781 11 11 22 30
Virginia Benjamin Harrison V Independent 157 1781-11-30 1784-11-30 1781 1784 11 11 30 30
Georgia John Martin Independent 53 1782-01-03 1783-01-08 1782 1783 1 1 3 8
South Carolina John Matthews Independent 53 1782-01-31 1783-02-04 1782 1783 1 2 31 4
North Carolina Alexander Martin Anti-Federalist 160 1782-04-22 1785-05-13 1782 1785 4 5 22 13
Maryland William Paca Independent 157 1782-11-22 1785-11-26 1782 1785 11 11 22 26
Georgia Lyman Hall Independent 52 1783-01-08 1784-01-09 1783 1784 1 1 8 9
South Carolina Benjamin Guerard Independent 105 1783-02-04 1785-02-11 1783 1785 2 2 4 11
Georgia John Houstoun Independent 52 1784-01-09 1785-01-06 1784 1785 1 1 9 6
Connecticut Matthew Griswold Federalist 104 1784-05-13 1786-05-11 1784 1786 5 5 13 11
Virginia Patrick Henry Independent 104 1784-11-30 1786-11-30 1784 1786 11 11 30 30
Georgia Samuel Elbert Independent 53 1785-01-06 1786-01-09 1785 1786 1 1 6 9
South Carolina William Moultrie Independent 106 1785-02-11 1787-02-20 1785 1787 2 2 11 20
Massachusetts Thomas Cushing III Independent 14 1785-02-17 1785-05-27 1785 1785 2 5 17 27
North Carolina Richard Caswell Independent 136 1785-05-13 1787-12-20 1785 1787 5 12 13 20
Massachusetts James Bowdoin II Independent 105 1785-05-27 1787-05-30 1785 1787 5 5 27 30
Maryland William Smallwood Independent 156 1785-11-26 1788-11-24 1785 1788 11 11 26 24
Georgia Edward Telfair Independent 52 1786-01-09 1787-01-09 1786 1787 1 1 9 9
Rhode Island John Collins Independent 209 1786-05-03 1790-05-05 1786 1790 5 5 3 5
Connecticut Samuel Huntington Federalist 504 1786-05-11 1796-01-05 1786 1796 5 1 11 5
Virginia Edmund Randolph Independent 102 1786-11-30 1788-11-12 1786 1788 11 11 30 12
Georgia George Mattthews Independent 55 1787-01-09 1788-01-26 1787 1788 1 1 9 26
South Carolina Thomas Pinckney Federalist 101 1787-02-20 1789-01-26 1787 1789 2 1 20 26
Massachusetts John Hancock Independent 332 1787-05-30 1793-10-08 1787 1793 5 10 30 8
North Carolina Samuel Johnston Federalist 104 1787-12-20 1789-12-17 1787 1789 12 12 20 17
Georgia George Handley Independent 50 1788-01-26 1789-01-07 1788 1789 1 1 26 7
Virginia Beverley Randolph Independent 316 1788-11-12 1794-12-01 1788 1794 11 12 12 1
Maryland John Eager Howard Federalist 155 1788-11-24 1791-11-14 1788 1791 11 11 24 14
Georgia George Walton Democratic-Republican 44 1789-01-07 1789-11-09 1789 1789 1 11 7 9
South Carolina Charles Pinckney Federalist 201 1789-01-26 1792-12-05 1789 1792 1 12 26 5
Delaware Joshua Clayton Federalist 346 1789-06-02 1796-01-19 1789 1796 6 1 2 19
Georgia George Mattthews Democratic-Republican 208 1789-11-09 1793-11-07 1789 1793 11 11 9 7
North Carolina Alexander Martin Anti-Federalist 156 1789-12-17 1792-12-14 1789 1792 12 12 17 14
Rhode Island Arthur Fenner Country 806 1790-05-05 1805-10-15 1790 1805 5 10 5 15
New Hampshire Josiah Bartlett Democratic-Republican 209 1790-06-05 1794-06-05 1790 1794 6 6 5 5
New Jersey Elisha Lawrence Federalist 14 1790-07-25 1790-10-29 1790 1790 7 10 25 29
Vermont Thomas Chittenden Independent 358 1790-10-13 1797-08-25 1790 1797 10 8 13 25
New Jersey William Paterson Federalist 126 1790-10-29 1793-03-30 1790 1793 10 3 29 30
Pennsylvania Thomas Mifflin Independent 469 1790-12-21 1799-12-17 1790 1799 12 12 21 17
Maryland George Plater III Federalist 13 1791-11-14 1792-02-10 1791 1792 11 2 14 10
Virginia Henry Lee III Federalist 157 1791-12-01 1794-12-01 1791 1794 12 12 1 1
Virginia Robert Brooke Democratic-Republican 261 1791-12-01 1796-11-30 1791 1796 12 11 1 30
Maryland James Brice Federalist 8 1792-02-10 1792-04-05 1792 1792 2 4 10 5
Maryland Thomas Sim Lee Federalist 136 1792-04-05 1794-11-14 1792 1794 4 11 5 14
Kentucky Isaac Shelby Democratic-Republican 209 1792-06-04 1796-06-07 1792 1796 6 6 4 7
South Carolina William Moultrie Federalist 106 1792-12-05 1794-12-17 1792 1794 12 12 5 17
North Carolina Richard Dobbs Spaight Federalist 153 1792-12-14 1795-11-19 1792 1795 12 11 14 19
New Jersey Thomas Henderson Federalist 9 1793-03-30 1793-06-03 1793 1793 3 6 30 3
New Jersey Richard Howell Federalist 439 1793-06-03 1801-10-31 1793 1801 6 10 3 31
Massachusetts Samuel Adams Independent 190 1793-10-08 1797-06-02 1793 1797 10 6 8 2
Georgia Jared Irwin Democratic-Republican 114 1793-11-07 1796-01-15 1793 1796 11 1 7 15
New Hampshire John Taylor Gilman Federalist 574 1794-06-05 1805-06-06 1794 1805 6 6 5 6
Maryland John Hoskins Stone Federalist 157 1794-11-14 1797-11-17 1794 1797 11 11 14 17
South Carolina Arnoldus Vanderhorst Federalist 103 1794-12-17 1796-12-08 1794 1796 12 12 17 8
New York John Jay Federalist 313 1795-06-30 1801-06-30 1795 1801 6 6 30 30
North Carolina Samuel Ashe Anti-Federalist 159 1795-11-19 1798-12-07 1795 1798 11 12 19 7
Connecticut Oliver Wolcott Sr.  Federalist 99 1796-01-05 1797-12-01 1796 1797 1 12 5 1
Georgia James Jackson Democratic-Republican 104 1796-01-15 1798-01-12 1796 1798 1 1 15 12
Delaware Gunning Bedford Sr.  Federalist 89 1796-01-19 1797-09-30 1796 1797 1 9 19 30
Tennessee John Sevier Democratic-Republican 286 1796-03-30 1801-09-23 1796 1801 3 9 30 23
Kentucky James Garrard Democratic-Republican 430 1796-06-07 1804-09-05 1796 1804 6 9 7 5
Virginia James Wood Federalist 157 1796-11-30 1799-12-06 1796 1799 11 12 30 6
South Carolina Charles Pinckney Democratic-Republican 106 1796-12-08 1798-12-18 1796 1798 12 12 8 18
Massachusetts Increase Sumner Federalist 105 1797-06-02 1799-06-07 1797 1799 6 6 2 7
Vermont Paul Brigham Democratic-Republican 7 1797-08-25 1797-10-16 1797 1797 8 10 25 16
Delaware Daniel Rogers Federalist 67 1797-09-30 1799-01-09 1797 1799 9 1 30 9
Vermont Isaac Tichenor Federalist 521 1797-10-16 1807-10-09 1797 1807 10 10 16 9
Maryland John Henry Democratic-Republican 52 1797-11-17 1798-11-14 1797 1798 11 11 17 14
Connecticut Jonathan Trumbull Jr.  Federalist 609 1797-12-01 1809-08-07 1797 1809 12 8 1 7
Georgia David Emanuel Democratic-Republican 164 1798-01-12 1801-03-03 1798 1801 1 3 12 3
Maryland Benjamin Ogle Federalist 156 1798-11-14 1801-11-10 1798 1801 11 11 14 10
North Carolina William Richardson Davie Federalist 50 1798-12-07 1799-11-23 1798 1799 12 11 7 23
South Carolina Edward Rutledge Federalist 57 1798-12-18 1800-01-23 1798 1800 12 1 18 23
Delaware Richard Bassett Federalist 112 1799-01-09 1801-03-03 1799 1801 1 3 9 3
Massachusetts Moses Gill Independent 50 1799-06-07 1800-05-20 1799 1800 6 5 7 20
North Carolina Benjamin Williams Federalist 158 1799-11-23 1802-12-06 1799 1802 11 12 23 6
Virginia Hardin Burnley Independent 0 1799-12-06 1799-12-09 1799 1799 12 12 6 9
Virginia John Pendleton Jr.  Independent 1 1799-12-09 1799-12-19 1799 1799 12 12 9 19
Pennsylvania Thomas McKean Democratic-Republican 470 1799-12-17 1808-12-20 1799 1808 12 12 17 20
Virginia James Monroe Democratic-Republican 157 1799-12-19 1802-12-24 1799 1802 12 12 19 24
South Carolina John Drayton Democratic-Republican 150 1800-01-23 1802-12-08 1800 1802 1 12 23 8
Massachusetts Caleb Strong Federalist 365 1800-05-30 1807-05-29 1800 1807 5 5 30 29
Delaware James Sykes Federalist 46 1801-03-03 1802-01-19 1801 1802 3 1 3 19
Georgia Josiah Tattnall Democratic-Republican 87 1801-03-03 1802-11-04 1801 1802 3 11 3 4
New York George Clinton Democratic-Republican 157 1801-06-30 1804-06-30 1801 1804 6 6 30 30
Tennessee Archibald Roane Democratic-Republican 104 1801-09-23 1803-09-23 1801 1803 9 9 23 23
New Jersey Joseph Bloomfield Democratic-Republican 52 1801-10-31 1802-10-28 1801 1802 10 10 31 28
Maryland John Francis Mercer Democratic-Republican 105 1801-11-10 1803-11-13 1801 1803 11 11 10 13
Delaware David Hall Democratic-Republican 156 1802-01-19 1805-01-15 1802 1805 1 1 19 15
New Jersey John Lambert Democratic-Republican 52 1802-10-28 1803-10-29 1802 1803 10 10 28 29
Georgia John Milledge Democratic-Republican 203 1802-11-04 1806-09-23 1802 1806 11 9 4 23
North Carolina James Turner Democratic-Republican 157 1802-12-06 1805-12-10 1802 1805 12 12 6 10
South Carolina James Burchill Richardson Democratic-Republican 104 1802-12-08 1804-12-07 1802 1804 12 12 8 7
Virginia John Page Democratic-Republican 155 1802-12-24 1805-12-11 1802 1805 12 12 24 11
Ohio Edward Tiffin Democratic-Republican 209 1803-03-03 1807-03-04 1803 1807 3 3 3 4
Tennessee John Sevier Democratic-Republican 313 1803-09-23 1809-09-20 1803 1809 9 9 23 20
New Jersey Joseph Bloomfield Democratic-Republican 470 1803-10-29 1812-10-29 1803 1812 10 10 29 29
Maryland Robert Bowie Democratic-Republican 156 1803-11-13 1806-11-10 1803 1806 11 11 13 10
New York Morgan Lewis Democratic-Republican 156 1804-06-30 1807-06-30 1804 1807 6 6 30 30
Kentucky Christopher Greenup Democratic-Republican 208 1804-09-05 1808-09-01 1804 1808 9 9 5 1
South Carolina Paul Hamilton Democratic-Republican 105 1804-12-07 1806-12-09 1804 1806 12 12 7 9
Delaware Nathaniel Mitchell Federalist 157 1805-01-15 1808-01-19 1805 1808 1 1 15 19
New Hampshire John Langdon Democratic-Republican 209 1805-06-06 1809-06-08 1805 1809 6 6 6 8
Rhode Island Henry Smith Country 29 1805-10-15 1806-05-07 1805 1806 10 5 15 7
North Carolina Nathaniel Alexander Democratic-Republican 103 1805-12-10 1807-12-01 1805 1807 12 12 10 1
Virginia William H. Cabell Democratic-Republican 157 1805-12-11 1808-12-12 1805 1808 12 12 11 12
Rhode Island Isaac Wilbour Country 52 1806-05-07 1807-05-06 1806 1807 5 5 7 6
Georgia Jared Irwin Democratic-Republican 163 1806-09-23 1809-11-10 1806 1809 9 11 23 10
Maryland Robert Wright Democratic-Republican 135 1806-11-10 1809-06-09 1806 1809 11 6 10 9
South Carolina Charles Pinckney Democratic-Republican 105 1806-12-09 1808-12-10 1806 1808 12 12 9 10
Ohio Thomas Kirker Democratic-Republican 93 1807-03-04 1808-12-12 1807 1808 3 12 4 12
Rhode Island James Fenner Democratic-Republican 208 1807-05-06 1811-05-01 1807 1811 5 5 6 1
Massachusetts James Sullivan Democratic-Republican 80 1807-05-29 1808-12-10 1807 1808 5 12 29 10
New York Daniel D. Tompkins Democratic-Republican 504 1807-06-30 1817-02-24 1807 1817 6 2 30 24
Vermont Israel Smith Democratic-Republican 53 1807-10-09 1808-10-14 1807 1808 10 10 9 14
North Carolina Benjamin Wiliams Federalist 54 1807-12-01 1808-12-12 1807 1808 12 12 1 12
Delaware George Truitt Federalist 156 1808-01-19 1811-01-15 1808 1811 1 1 19 15
Kentucky Charles Scott Democratic-Republican 208 1808-09-01 1812-08-24 1808 1812 9 8 1 24
Vermont Isaac Tichenor Federalist 52 1808-10-14 1809-10-14 1808 1809 10 10 14 14
Massachusetts Levi Lincoln Sr.  Democratic-Republican 20 1808-12-10 1809-05-01 1808 1809 12 5 10 1
South Carolina John Drayton Democratic-Republican 104 1808-12-10 1810-12-08 1808 1810 12 12 10 8
North Carolina David Stone Democratic-Republican 103 1808-12-12 1810-12-01 1808 1810 12 12 12 1
Ohio Samuel H. Huntington Democratic-Republican 104 1808-12-12 1810-12-08 1808 1810 12 12 12 8
Virginia John Tyler Sr.  Democratic-Republican 109 1808-12-12 1811-01-15 1808 1811 12 1 12 15
Pennsylvania Simon Snyder Democratic-Republican 469 1808-12-20 1817-12-16 1808 1817 12 12 20 16
Massachusetts Christopher Gore Federalist 58 1809-05-01 1810-06-10 1809 1810 5 6 1 10
New Hampshire Jeremiah Smith Federalist 52 1809-06-08 1810-06-05 1809 1810 6 6 8 5
Maryland Edward Lloyd V Democratic-Republican 127 1809-06-09 1811-11-16 1809 1811 6 11 9 16
Connecticut John Treadwell Federalist 91 1809-08-07 1811-05-09 1809 1811 8 5 7 9
Tennessee Willie Blount Democratic-Republican 314 1809-09-20 1815-09-27 1809 1815 9 9 20 27
Vermont Jonas Galusha Democratic-Republican 210 1809-10-14 1813-10-23 1809 1813 10 10 14 23
Georgia David Brydie Mitchell Democratic-Republican 208 1809-11-10 1813-11-05 1809 1813 11 11 10 5
New Hampshire John Langdon Democratic-Republican 104 1810-06-05 1812-06-05 1810 1812 6 6 5 5
Massachusetts Elbridge Gerry Democratic-Republican 104 1810-06-10 1812-06-05 1810 1812 6 6 10 5
North Carolina Benjamin Smith Democratic-Republican 54 1810-12-01 1811-12-11 1810 1811 12 12 1 11
Ohio Return Jonathan Meigs Jr.  Democratic-Republican 172 1810-12-08 1814-03-24 1810 1814 12 3 8 24
South Carolina Henry Middleton Democratic-Republican 105 1810-12-08 1812-12-10 1810 1812 12 12 8 10
Delaware Joseph Haslet Democratic-Republican 157 1811-01-15 1814-01-18 1811 1814 1 1 15 18
Virginia George William Smith Democratic-Republican 1 1811-01-15 1811-01-19 1811 1811 1 1 15 19
Virginia James Monroe Democratic-Republican 11 1811-01-19 1811-04-03 1811 1811 1 4 19 3
Virginia George William Smith Democratic-Republican 38 1811-04-03 1811-12-26 1811 1811 4 12 3 26
Rhode Island William Jones Federalist 314 1811-05-01 1817-05-07 1811 1817 5 5 1 7
Connecticut Roger Griswold Federalist 76 1811-05-09 1812-10-25 1811 1812 5 10 9 25
Maryland Robert Bowie Democratic-Republican 53 1811-11-16 1812-11-23 1811 1812 11 11 16 23
North Carolina William Hawkins Democratic-Republican 155 1811-12-11 1814-11-29 1811 1814 12 11 11 29
Virginia Peyton Randolph Democratic-Republican 1 1811-12-26 1812-01-04 1811 1812 12 1 26 4
Virginia James Barbour Democratic-Republican 153 1812-01-04 1814-12-11 1812 1814 1 12 4 11
Massachusetts Caleb Strong Federalist 208 1812-06-05 1816-05-30 1812 1816 6 5 5 30
New Hampshire William Plumer Democratic-Republican 52 1812-06-05 1813-06-03 1812 1813 6 6 5 3
Louisiana William Charles Cole Claiborne Democratic-Republican 229 1812-07-30 1816-12-17 1812 1816 7 12 30 17
Kentucky Isaac Shelby Democratic-Republican 210 1812-08-24 1816-09-05 1812 1816 8 9 24 5
Connecticut John Cotton Smith Federalist 237 1812-10-25 1817-05-08 1812 1817 10 5 25 8
New Jersey Aaron Ogden Federalist 52 1812-10-29 1813-10-29 1812 1813 10 10 29 29
Maryland Levin Winder Federalist 162 1812-11-23 1816-01-02 1812 1816 11 1 23 2
South Carolina Joseph Alston Democratic-Republican 104 1812-12-10 1814-12-10 1812 1814 12 12 10 10
New Hampshire John Taylor Gilman Federalist 157 1813-06-03 1816-06-06 1813 1816 6 6 3 6
Vermont Martin Gittenden Federalist 103 1813-10-23 1815-10-14 1813 1815 10 10 23 14
New Jersey William Sanford Pennington Democratic-Republican 85 1813-10-29 1815-06-19 1813 1815 10 6 29 19
Georgia Peter Early Democratic-Republican 106 1813-11-05 1815-11-20 1813 1815 11 11 5 20
Delaware Daniel Rodney Federalist 157 1814-01-18 1817-01-21 1814 1817 1 1 18 21
Ohio Othniel Looker Democratic-Republican 37 1814-03-24 1814-12-08 1814 1814 3 12 24 8
North Carolina William Miller Democratic-Republican 158 1814-11-29 1817-12-06 1814 1817 11 12 29 6
Ohio Thomas Worthington Democratic-Republican 210 1814-12-08 1818-12-14 1814 1818 12 12 8 14
South Carolina David Rogerson Williams Democratic-Republican 104 1814-12-10 1816-12-05 1814 1816 12 12 10 5
Virginia Wilson Cary Nicholas Democratic-Republican 104 1814-12-11 1816-12-11 1814 1816 12 12 11 11
New Jersey William Kennedy Democratic-Republican 18 1815-06-19 1815-10-26 1815 1815 6 10 19 26
Tennessee Joseph McMinn Democratic-Republican 314 1815-09-27 1821-10-01 1815 1821 9 10 27 1
Vermont Jonas Gallusha Democratic-Republican 262 1815-10-14 1820-10-23 1815 1820 10 10 14 23
New Jersey Mahlon Dickerson Democratic-Republican 66 1815-10-26 1817-02-01 1815 1817 10 2 26 1
Georgia David Brydie Mitchell Democratic-Republican 67 1815-11-20 1817-03-04 1815 1817 11 3 20 4
Maryland Charles Canan Ridgely Federalist 157 1816-01-02 1819-01-08 1816 1819 1 1 2 8
Massachusetts John Brooks Federalist 365 1816-05-30 1823-05-31 1816 1823 5 5 30 31
New Hampshire William Plumer Democratic-Republican 156 1816-06-06 1819-06-03 1816 1819 6 6 6 3
Kentucky George Madison Democratic-Republican 6 1816-09-05 1816-10-14 1816 1816 9 10 5 14
Kentucky Gabriel Slaughter Democratic-Republican 202 1816-10-14 1820-08-29 1816 1820 10 8 14 29
Indiana Jonathan Jennings Democratic-Republican 305 1816-11-07 1822-09-12 1816 1822 11 9 7 12
South Carolina Andrew Pickens Democratic-Republican 105 1816-12-05 1818-12-08 1816 1818 12 12 5 8
Virginia James Patton Preston Democratic-Republican 156 1816-12-11 1819-12-11 1816 1819 12 12 11 11
Louisiana Jacques Philippe Villere Democratic-Republican 209 1816-12-17 1820-12-18 1816 1820 12 12 17 18
Delaware John Clark Federalist 156 1817-01-21 1820-01-18 1817 1820 1 1 21 18
New Jersey Isaac Halstead Williamson Federalist 665 1817-02-01 1829-10-30 1817 1829 2 10 1 30
New York John Taylor Democratic-Republican 18 1817-02-24 1817-06-30 1817 1817 2 6 24 30
Georgia William Rabun Democratic-Republican 138 1817-03-04 1819-10-24 1817 1819 3 10 4 24
Rhode Island Nehemiah Rice Knight Democratic-Republican 208 1817-05-07 1821-05-02 1817 1821 5 5 7 2
Connecticut Oliver Woldcott Jr.  Toleration 521 1817-05-08 1827-05-02 1817 1827 5 5 8 2
New York DeWitt Clinton Democratic-Republican 287 1817-06-30 1822-12-31 1817 1822 6 12 30 31
North Carolina John Branch Jr.  Democratic-Republican 157 1817-12-06 1820-12-07 1817 1820 12 12 6 7
Mississippi David Holmes Democratic-Republican 108 1817-12-10 1820-01-05 1817 1820 12 1 10 5
Pennsylvania William Findlay Democratic-Republican 157 1817-12-16 1820-12-19 1817 1820 12 12 16 19
Illinois Shadrach Bond Independent 217 1818-10-06 1822-12-05 1818 1822 10 12 6 5
South Carolina John Geddes Democratic-Republican 104 1818-12-08 1820-12-07 1818 1820 12 12 8 7
Ohio Ethan Allen Brown Democratic-Republican 160 1818-12-14 1822-01-04 1818 1822 12 1 14 4
Maryland Charles Goldsborough Federalist 49 1819-01-08 1819-12-20 1819 1819 1 12 8 20
New Hampshire Samuel Bell Democratic-Republican 209 1819-06-03 1823-06-05 1819 1823 6 6 3 5
Georgia Matthew Talbot Democratic-Republican 2 1819-10-24 1819-11-05 1819 1819 10 11 24 5
Georgia John Clark Democratic-Republican 209 1819-11-05 1823-11-07 1819 1823 11 11 5 7
Alabama William Wyatt Bibb Democratic-Republican 35 1819-11-09 1820-07-10 1819 1820 11 7 9 10
Virginia Thomas Mann Randolph Jr.  Democratic-Republican 157 1819-12-11 1822-12-11 1819 1822 12 12 11 11
Maryland Samuel Sprigg Democratic-Republican 156 1819-12-20 1822-12-16 1819 1822 12 12 20 16
Mississippi George Poindexter Democratic-Republican 105 1820-01-05 1822-01-07 1820 1822 1 1 5 7
Delaware Henry Molleston Federalist 0 1820-01-18 1820-01-18 1820 1820 1 1 18 18
Delaware Jacob Stout Federalist 52 1820-01-18 1821-01-16 1820 1821 1 1 18 16
Maine William King Democratic-Republican 63 1820-03-15 1821-05-28 1820 1821 3 5 15 28
Alabama Thomas Bibb Democratic-Republican 70 1820-07-10 1821-11-09 1820 1821 7 11 10 9
Kentucky John Adair Democratic-Republican 208 1820-08-29 1824-08-24 1820 1824 8 8 29 24
Missouri Alexander McNair Democratic-Republican 218 1820-09-10 1824-11-15 1820 1824 9 11 10 15
Vermont Richard Skinner Democratic-Republican 155 1820-10-23 1823-10-10 1820 1823 10 10 23 10
North Carolina Jesse Franklin Democratic-Republican 52 1820-12-07 1821-12-07 1820 1821 12 12 7 7
South Carolina Thomas Bennett Jr.  Democratic-Republican 104 1820-12-07 1822-12-07 1820 1822 12 12 7 7
Louisiana Thomas Bolling Robertson Democratic-Republican 204 1820-12-18 1824-11-15 1820 1824 12 11 18 15
Pennsylvania Joseph Hiester Democratic-Republican 156 1820-12-19 1823-12-16 1820 1823 12 12 19 16
Delaware John Collins Democratic-Republican 65 1821-01-16 1822-04-16 1821 1822 1 4 16 16
West Virginia Ephraim Franklin Morgon Republican 5426 1821-03-04 1925-03-04 1821 1925 3 3 4 4
Rhode Island William Channing Gibbs Democratic-Republican 157 1821-05-02 1824-05-05 1821 1824 5 5 2 5
Maine William Durkee Williamson Democratic-Republican 27 1821-05-28 1821-12-05 1821 1821 5 12 28 5
Tennessee William Carroll Democratic-Republican 313 1821-10-01 1827-10-01 1821 1827 10 10 1 1
Alabama Israel Pickens Democratic-Republican 211 1821-11-09 1825-11-25 1821 1825 11 11 9 25
Maine Benjamin Ames Democratic-Republican 4 1821-12-05 1822-01-02 1821 1822 12 1 5 2
North Carolina Gabriel Holmes Democratic-Republican 157 1821-12-07 1824-12-07 1821 1824 12 12 7 7
Maine Daniel Rose Democratic-Republican 0 1822-01-02 1822-01-05 1822 1822 1 1 2 5
Ohio Allen Trimble Democratic-Republican 51 1822-01-04 1822-12-28 1822 1822 1 12 4 28
Maine Albion Keith Parris Democratic-Republican 261 1822-01-05 1827-01-03 1822 1827 1 1 5 3
Mississippi Walter Daniel Leake Democratic-Republican 201 1822-01-07 1825-11-17 1822 1825 1 11 7 17
Delaware Caleb Rodney Federalist 40 1822-04-16 1823-01-21 1822 1823 4 1 16 21
Indiana Ratliff Boon Democratic-Republican 12 1822-09-12 1822-12-05 1822 1822 9 12 12 5
Illinois Edward Coles Independent 209 1822-12-05 1826-12-06 1822 1826 12 12 5 6
Indiana William Hendricks Democratic-Republican 114 1822-12-05 1825-02-12 1822 1825 12 2 5 12
South Carolina John Lyde Wilson Democratic-Republican 104 1822-12-07 1824-12-03 1822 1824 12 12 7 3
Virginia James Pleasants Jr.  Democratic-Republican 157 1822-12-11 1825-12-11 1822 1825 12 12 11 11
Maryland Samuel Stevens Jr.  Democratic-Republican 160 1822-12-16 1826-01-09 1822 1826 12 1 16 9
Ohio Jeremiah Morrow Democratic-Republican 207 1822-12-28 1826-12-19 1822 1826 12 12 28 19
New York Joseph Christopher Yates Democratic-Republican 104 1822-12-31 1824-12-31 1822 1824 12 12 31 31
Delaware Joseph Haslet Democratic-Republican 21 1823-01-21 1823-06-20 1823 1823 1 6 21 20
Massachusetts William Eustis Democratic-Republican 88 1823-05-31 1825-02-06 1823 1825 5 2 31 6
New Hampshire Levi Woodbury Democratic-Republican 52 1823-06-05 1824-06-03 1823 1824 6 6 5 3
Delaware Charles Thomas Democratic-Republican 31 1823-06-20 1824-01-20 1823 1824 6 1 20 20
Vermont Cornelius Peter Van Ness Democratic-Republican 157 1823-10-10 1826-10-13 1823 1826 10 10 10 13
Georgia George Troup Democratic-Republican 5426 1823-11-07 1927-11-07 1823 1927 11 11 7 7
Pennsylvania John Andrew Shulze Democratic-Republican 313 1823-12-16 1829-12-15 1823 1829 12 12 16 15
Delaware Samuel Paynter Federalist 156 1824-01-20 1827-01-16 1824 1827 1 1 20 16
Rhode Island James Fenner Democratic-Republican 365 1824-05-05 1831-05-04 1824 1831 5 5 5 4
New Hampshire David Lawrence Morril Democratic-Republican 157 1824-06-03 1827-06-07 1824 1827 6 6 3 7
Kentucky Joseph Desha Democratic-Republican 209 1824-08-24 1828-08-26 1824 1828 8 8 24 26
Louisiana Henry Schuyler Thibodaux Democratic-Republican 4 1824-11-15 1824-12-13 1824 1824 11 12 15 13
Missouri Frederick Bates Democratic-Republican 37 1824-11-15 1825-08-04 1824 1825 11 8 15 4
South Carolina Richard Irvine Manning I Democratic-Republican 105 1824-12-03 1826-12-09 1824 1826 12 12 3 9
North Carolina Hutchins Gordon Burton Independent 157 1824-12-07 1827-12-08 1824 1827 12 12 7 8
Louisiana Henry S. Johnson Democratic-Republican 209 1824-12-13 1828-12-15 1824 1828 12 12 13 15
New York DeWitt Clinton Democratic-Republican 162 1824-12-31 1828-02-11 1824 1828 12 2 31 11
Massachusetts Marcus Morton Democratic-Republican 16 1825-02-06 1825-05-26 1825 1825 2 5 6 26
Indiana James Brown Ray Independent 356 1825-02-12 1831-12-07 1825 1831 2 12 12 7
Massachusetts Levi Lincoln Jr.  National Republican 450 1825-05-26 1834-01-09 1825 1834 5 1 26 9
Missouri Abraham Jude Williams Democratic-Republican 24 1825-08-04 1826-01-20 1825 1826 8 1 4 20
Mississippi Gerard Chittocque Brandon Democratic 7 1825-11-17 1826-01-07 1825 1826 11 1 17 7
Alabama John Murphy Democratic 209 1825-11-25 1829-11-25 1825 1829 11 11 25 25
Virginia John Tyler Democratic-Republican 64 1825-12-11 1827-03-04 1825 1827 12 3 11 4
Mississippi David Holmes Democratic 28 1826-01-07 1826-07-25 1826 1826 1 7 7 25
Maryland Joseph Kent Democratic-Republican 157 1826-01-09 1829-01-15 1826 1829 1 1 9 15
Missouri John Miller Democratic 356 1826-01-20 1832-11-19 1826 1832 1 11 20 19
Mississippi Gerard Chittocque Brandon Democratic 285 1826-07-25 1832-01-09 1826 1832 7 1 25 9
Vermont Ezra Butler National Republican 104 1826-10-13 1828-10-10 1826 1828 10 10 13 10
Illinois Ninian Edwards Democratic-Republican 209 1826-12-06 1830-12-06 1826 1830 12 12 6 6
South Carolina John Taylor Democratic-Republican 104 1826-12-09 1828-12-06 1826 1828 12 12 9 6
Ohio Allen Trimble National Republican 209 1826-12-19 1830-12-18 1826 1830 12 12 19 18
Maine Enoch Lincoln Democratic-Republican 144 1827-01-03 1829-10-08 1827 1829 1 10 3 8
Delaware Charles Polk Jr.  Federalist 157 1827-01-16 1830-01-19 1827 1830 1 1 16 19
Virginia William Branch Giles Democratic-Republican 157 1827-03-04 1830-03-04 1827 1830 3 3 4 4
Connecticut Gideon Tomlinson National Republican 200 1827-05-02 1831-03-02 1827 1831 5 3 2 2
New Hampshire Benjamin Pierce Democratic-Republican 52 1827-06-07 1828-06-05 1827 1828 6 6 7 5
Tennessee Samuel Houston Democratic-Republican 80 1827-10-01 1829-04-16 1827 1829 10 4 1 16
Georgia John Forsyth Democratic-Republican 104 1827-11-07 1829-11-04 1827 1829 11 11 7 4
North Carolina James Iredell Jr.  Democratic-Republican 53 1827-12-08 1828-12-12 1827 1828 12 12 8 12
New York Nathaniel Pitcher Democratic-Republican 46 1828-02-11 1828-12-31 1828 1828 2 12 11 31
New Hampshire John Bell National Republican 52 1828-06-05 1829-06-04 1828 1829 6 6 5 4
Kentucky Thomas Metcalfe National Republican 210 1828-08-26 1832-09-04 1828 1832 8 9 26 4
Vermont Samuel Chandler Crafts National Republican 158 1828-10-10 1831-10-18 1828 1831 10 10 10 18
South Carolina Stephen Decatur Miller Nullifier 105 1828-12-06 1830-12-09 1828 1830 12 12 6 9
North Carolina John Owen Democratic 105 1828-12-12 1830-12-18 1828 1830 12 12 12 18
Louisiana Pierre Augustin Charles Bourguignon Derbigny National Republican 42 1828-12-15 1829-10-06 1828 1829 12 10 15 6
New York Martin Van Buren Democratic 10 1828-12-31 1829-03-12 1828 1829 12 3 31 12
Maryland Daniel Martin National Republican 52 1829-01-15 1830-01-15 1829 1830 1 1 15 15
New York Enos Thompson Throop Democratic 199 1829-03-12 1832-12-31 1829 1832 3 12 12 31
Tennessee William Hall Democratic 24 1829-04-16 1829-10-01 1829 1829 4 10 16 1
New Hampshire Benjamin Pierce Democratic 52 1829-06-04 1830-06-03 1829 1830 6 6 4 3
Tennessee William Carroll Democratic 315 1829-10-01 1835-10-12 1829 1835 10 10 1 12
Louisiana Armand Julie Beauvais National Republican 14 1829-10-06 1830-01-14 1829 1830 10 1 6 14
Maine Nathan Cutler Democratic 13 1829-10-08 1830-01-06 1829 1830 10 1 8 6
Georgia George Rockingham Gilmer Democratic-Republican 105 1829-11-04 1831-11-09 1829 1831 11 11 4 9
New Jersey Garret Dorset Wall Democratic 0 1829-11-06 1829-11-06 1829 1829 11 11 6 6
New Jersey Peter Dumont Vroom Democratic 155 1829-11-06 1832-10-26 1829 1832 11 10 6 26
Alabama Gabriel Moore Democratic 66 1829-11-25 1831-03-03 1829 1831 11 3 25 3
Pennsylvania George Wolf Democratic 313 1829-12-15 1835-12-15 1829 1835 12 12 15 15
Maine Joshua Hall Democratic 5 1830-01-06 1830-02-09 1830 1830 1 2 6 9
Louisiana Jacques Dupre National Republican 55 1830-01-14 1831-01-31 1830 1831 1 1 14 31
Maryland Thomas King Carroll Jacksonian 52 1830-01-15 1831-01-13 1830 1831 1 1 15 13
Delaware David Hazzard National Republican 156 1830-01-19 1833-01-15 1830 1833 1 1 19 15
Maine Johnathan Glidden Hunton National Republican 47 1830-02-09 1831-01-05 1830 1831 2 1 9 5
Virginia John Floyd Democratic 213 1830-03-04 1834-03-31 1830 1834 3 3 4 31
New Hampshire Matthew Harvey Democratic 39 1830-06-03 1831-02-28 1830 1831 6 2 3 28
Illinois John M. Reynolds National Republican 206 1830-12-06 1834-11-17 1830 1834 12 11 6 17
South Carolina James Hamilton Jr.  Nullifier 105 1830-12-09 1832-12-10 1830 1832 12 12 9 10
North Carolina Montfort Stokes Democratic 103 1830-12-18 1832-12-06 1830 1832 12 12 18 6
Ohio Duncan McArthur National Republican 103 1830-12-18 1832-12-07 1830 1832 12 12 18 7
Maine Samuel Emerson Smith Democratic 156 1831-01-05 1834-01-01 1831 1834 1 1 5 1
Maryland Daniel Martin National Republican 26 1831-01-13 1831-07-11 1831 1831 1 7 13 11
Louisiana Andre Bienvenue Roman National Republican 209 1831-01-31 1835-02-02 1831 1835 1 2 31 2
New Hampshire Joseph Merrill Harper Democratic 13 1831-02-28 1831-06-02 1831 1831 2 6 28 2
Connecticut John Samuel Peters National Republican 113 1831-03-02 1833-05-01 1831 1833 3 5 2 1
Alabama Samuel Moore Democratic 38 1831-03-03 1831-11-26 1831 1831 3 11 3 26
Rhode Island Lemuel Hastings Arnold National Republican 104 1831-05-04 1833-05-01 1831 1833 5 5 4 1
New Hampshire Samuel Dinsmoor Democratic 157 1831-06-02 1834-06-05 1831 1834 6 6 2 5
Maryland George Howard National Republican 79 1831-07-11 1833-01-17 1831 1833 7 1 11 17
Vermont William Adams Palmer Anti-Masonic 211 1831-10-18 1835-11-02 1831 1835 10 11 18 2
Georgia Wilson Lumpkin Democratic 208 1831-11-09 1835-11-04 1831 1835 11 11 9 4
Alabama John Gayle Democratic 208 1831-11-26 1835-11-21 1831 1835 11 11 26 21
Indiana Noah Noble Whig 313 1831-12-07 1837-12-06 1831 1837 12 12 7 6
Mississippi Abram Marshall Scott National Republican 79 1832-01-09 1833-07-12 1832 1833 1 7 9 12
Kentucky John Breathitt Democratic 76 1832-09-04 1834-02-21 1832 1834 9 2 4 21
New Jersey Samuel Lewis Southard Whig 18 1832-10-26 1833-02-27 1832 1833 10 2 26 27
Missouri Daniel Dunklin Democratic 202 1832-11-19 1836-09-30 1832 1836 11 9 19 30
North Carolina David Lowry Swain National Republican 157 1832-12-06 1835-12-10 1832 1835 12 12 6 10
Ohio Robert Lucas Democratic 209 1832-12-07 1836-12-12 1832 1836 12 12 7 12
South Carolina Robert Young Hayne Nullifier 104 1832-12-10 1834-12-09 1832 1834 12 12 10 9
New York William Learned Marcy Democratic 313 1832-12-31 1838-12-31 1832 1838 12 12 31 31
Delaware Caleb Prew Bennett Democratic 173 1833-01-15 1836-05-09 1833 1836 1 5 15 9
Maryland James Thomas Whig 156 1833-01-17 1836-01-14 1833 1836 1 1 17 14
New Jersey Elias Petty Seeley Whig 34 1833-02-27 1833-10-25 1833 1833 2 10 27 25
Connecticut Henry Waggaman Edwards Democratic 53 1833-05-01 1834-05-07 1833 1834 5 5 1 7
Rhode Island John Brown Francis Democratic 261 1833-05-01 1838-05-02 1833 1838 5 5 1 2
Mississippi Charles Lynch National Republican 19 1833-07-12 1833-11-20 1833 1833 7 11 12 20
New Jersey Peter Dumont Vroom Democratic 158 1833-10-25 1836-11-03 1833 1836 10 11 25 3
Mississippi Hiram George Runnels Democratic 104 1833-11-20 1835-11-20 1833 1835 11 11 20 20
Maine Robert Pinckney Dunlap Democratic 209 1834-01-01 1838-01-03 1834 1838 1 1 1 3
Massachusetts John Davis Whig 59 1834-01-09 1835-03-01 1834 1835 1 3 9 1
Kentucky James Turner Morehead National Republican 132 1834-02-21 1836-08-30 1834 1836 2 8 21 30
Virginia Littleton Waller Tazewell Democratic 104 1834-03-31 1836-03-30 1834 1836 3 3 31 30
Connecticut Samuel Augustus Foot Whig 52 1834-05-07 1835-05-06 1834 1835 5 5 7 6
New Hampshire William Badger Democratic 104 1834-06-05 1836-06-02 1834 1836 6 6 5 2
Illinois William Lee Davidson Ewing Democratic 2 1834-11-17 1834-12-03 1834 1834 11 12 17 3
Illinois Joseph Duncan Whig 209 1834-12-03 1838-12-07 1834 1838 12 12 3 7
South Carolina George McDuffie Democratic 105 1834-12-09 1836-12-10 1834 1836 12 12 9 10
Louisiana Edward Douglass White Sr.  Whig 209 1835-02-02 1839-02-04 1835 1839 2 2 2 4
Massachusetts Samuel Turell Armstrong Whig 45 1835-03-01 1836-01-13 1835 1836 3 1 1 13
Connecticut Henry Waggaman Edwards Democratic 156 1835-05-06 1838-05-02 1835 1838 5 5 6 2
Tennessee Newton Cannon Whig 209 1835-10-12 1839-10-14 1835 1839 10 10 12 14
Vermont Silas Hemenway Jennison Whig 311 1835-11-02 1841-10-15 1835 1841 11 10 2 15
Michigan Stevens Thomas Mason Democratic 218 1835-11-03 1840-01-07 1835 1840 11 1 3 7
Georgia William Schley Democratic 105 1835-11-04 1837-11-08 1835 1837 11 11 4 8
Mississippi John Anthony Quitman Whig 7 1835-11-20 1836-01-07 1835 1836 11 1 20 7
Alabama Clement Comer Clay Democratic 86 1835-11-21 1837-07-17 1835 1837 11 7 21 17
North Carolina Richard Dobbs Spaight Jr.  Whig 55 1835-12-10 1836-12-31 1835 1836 12 12 10 31
Pennsylvania Joseph Ritner Anti-Masonic 161 1835-12-15 1839-01-15 1835 1839 12 1 15 15
Mississippi Charles Lynch Whig 105 1836-01-07 1838-01-08 1836 1838 1 1 7 8
Massachusetts Edward Everett Whig 209 1836-01-13 1840-01-18 1836 1840 1 1 13 18
Maryland Thomas Ward Veazey Whig 156 1836-01-14 1839-01-07 1836 1839 1 1 14 7
Virginia Wyndham Robertson Whig 52 1836-03-30 1837-03-31 1836 1837 3 3 30 31
Delaware Charles Polk Jr.  Whig 36 1836-05-09 1837-01-17 1836 1837 5 1 9 17
New Hampshire Isaac Hill Democratic 157 1836-06-02 1839-06-05 1836 1839 6 6 2 5
Kentucky James Clark Whig 156 1836-08-30 1839-08-27 1836 1839 8 8 30 27
Arkansas James Sevier Conway Democratic 216 1836-09-13 1840-11-04 1836 1840 9 11 13 4
Missouri Lilburn William Boggs Democratic 215 1836-09-30 1840-11-16 1836 1840 9 11 30 16
New Jersey Philemon Dickerson Democratic 51 1836-11-03 1837-10-27 1836 1837 11 10 3 27
South Carolina Pierce Mason Butler Democratic 104 1836-12-10 1838-12-07 1836 1838 12 12 10 7
Ohio Joseph Vance Whig 104 1836-12-12 1838-12-13 1836 1838 12 12 12 13
North Carolina Edward Bishop Dudley Whig 209 1836-12-31 1841-01-01 1836 1841 12 1 31 1
Rhode Island Robert Emmet Quinn Democratic 104 1837-01-05 1839-01-03 1837 1839 1 1 5 3
Delaware Cornelius Parsons Comegys Whig 209 1837-01-17 1841-01-19 1837 1841 1 1 17 19
Virginia David Campbell Democratic 157 1837-03-31 1840-03-31 1837 1840 3 3 31 31
Alabama Hugh McVay Democratic 18 1837-07-17 1837-11-21 1837 1837 7 11 17 21
New Jersey William Pennington Whig 313 1837-10-27 1843-10-27 1837 1843 10 10 27 27
Georgia George Rockingham Gilmer Whig 104 1837-11-08 1839-11-06 1837 1839 11 11 8 6
Alabama Arthur Pendleton Bagby Democratic 209 1837-11-21 1841-11-22 1837 1841 11 11 21 22
Indiana David Wallace Whig 157 1837-12-06 1840-12-09 1837 1840 12 12 6 9
Maine Edward Kent Whig 52 1838-01-03 1839-01-02 1838 1839 1 1 3 2
Mississippi Alexander Gallatin McNutt Democratic 209 1838-01-08 1842-01-10 1838 1842 1 1 8 10
Virginia James Hubert Price Democratic 5427 1838-01-18 1942-01-20 1838 1942 1 1 18 20
Connecticut William Wolcott Ellsworth Whig 209 1838-05-02 1842-05-04 1838 1842 5 5 2 4
Rhode Island William Sprague III Whig 52 1838-05-02 1839-05-02 1838 1839 5 5 2 2
Illinois Thomas Carlin Democratic 209 1838-12-07 1842-12-08 1838 1842 12 12 7 8
South Carolina Patrick Noble Democratic 70 1838-12-07 1840-04-07 1838 1840 12 4 7 7
Ohio Wilson Shannon Democratic 105 1838-12-13 1840-12-16 1838 1840 12 12 13 16
New York William Henry Seward Whig 209 1838-12-31 1842-12-31 1838 1842 12 12 31 31
Maine John Fairfield Democratic 106 1839-01-02 1841-01-12 1839 1841 1 1 2 12
Rhode Island William Henry Vanderbilt III Republican 5323 1839-01-03 1941-01-07 1839 1941 1 1 3 7
Maryland William Grason Democratic 156 1839-01-07 1842-01-03 1839 1842 1 1 7 3
Pennsylvania David Rittenhouse Porter Democratic 314 1839-01-15 1845-01-21 1839 1845 1 1 15 21
Louisiana Andre Bienvenue Roman Whig 208 1839-02-04 1843-01-30 1839 1843 2 1 4 30
Rhode Island Samuel Ward King Rhode Island 209 1839-05-02 1843-05-02 1839 1843 5 5 2 2
New Hampshire John Page Democratic 156 1839-06-05 1842-06-02 1839 1842 6 6 5 2
Kentucky Charles Anderson Wickliffe Whig 53 1839-08-27 1840-09-02 1839 1840 8 9 27 2
Tennessee James Knox Polk Democratic 105 1839-10-14 1841-10-15 1839 1841 10 10 14 15
Georgia Charles James McDonald Democratic 209 1839-11-06 1843-11-08 1839 1843 11 11 6 8
Michigan William Woodbridge Whig 59 1840-01-07 1841-02-23 1840 1841 1 2 7 23
Massachusetts Marcus Morton Democratic 51 1840-01-18 1841-01-07 1840 1841 1 1 18 7
Virginia Thomas Walker Gilmer Whig 51 1840-03-31 1841-03-20 1840 1841 3 3 31 20
South Carolina Barnabas Kelet Henagan Democratic 35 1840-04-07 1840-12-09 1840 1840 4 12 7 9
Kentucky Robert Perkins Letcher Whig 209 1840-09-02 1844-09-04 1840 1844 9 9 2 4
Arkansas Archibald Yell Democratic 182 1840-11-04 1844-04-29 1840 1844 11 4 4 29
Missouri Thomas Reynolds Democratic 169 1840-11-16 1844-02-09 1840 1844 11 2 16 9
Indiana Samuel Bigger Whig 156 1840-12-09 1843-12-06 1840 1843 12 12 9 6
South Carolina John Peter Richardson II Democratic 104 1840-12-09 1842-12-08 1840 1842 12 12 9 8
Ohio Thomas Corwin Whig 104 1840-12-16 1842-12-14 1840 1842 12 12 16 14
North Carolina John Motley Morehead Whig 209 1841-01-01 1845-01-01 1841 1845 1 1 1 1
Massachusetts John Davis Whig 106 1841-01-07 1843-01-17 1841 1843 1 1 7 17
Maine Richard Hampton Vose Whig 0 1841-01-12 1841-01-13 1841 1841 1 1 12 13
Maine Edward Kent Whig 51 1841-01-13 1842-01-05 1841 1842 1 1 13 5
Delaware William Barkley Cooper Whig 209 1841-01-19 1845-01-21 1841 1845 1 1 19 21
Michigan James Wright Gordon Whig 45 1841-02-23 1842-01-03 1841 1842 2 1 23 3
Virginia John Mercer Patton Whig 2 1841-03-20 1841-03-31 1841 1841 3 3 20 31
Virginia John Rutherfoord Democratic 52 1841-03-31 1842-03-31 1841 1842 3 3 31 31
Tennessee James Chamberlain Jones Whig 209 1841-10-15 1845-10-14 1841 1845 10 10 15 14
Vermont Charles Paine Whig 104 1841-10-15 1843-10-13 1841 1843 10 10 15 13
Alabama Benjamin Fitzpatrick Democratic 211 1841-11-22 1845-12-10 1841 1845 11 12 22 10
Maryland Francis Thomas Democratic 157 1842-01-03 1845-01-06 1842 1845 1 1 3 6
Michigan John Stewart Barry Democratic 209 1842-01-03 1846-01-05 1842 1846 1 1 3 5
Maine John Fairfield Democratic 61 1842-01-05 1843-03-07 1842 1843 1 3 5 7
Mississippi Tilghman Mayfield Tucker Democratic 104 1842-01-10 1844-01-10 1842 1844 1 1 10 10
Virginia John Munford Gregory Whig 40 1842-03-31 1843-01-05 1842 1843 3 1 31 5
Rhode Island Thomas Wilson Dorr Extralegal 38 1842-05-01 1843-01-23 1842 1843 5 1 1 23
Connecticut Chauncey Fitch Cleveland Democratic 104 1842-05-04 1844-05-01 1842 1844 5 5 4 1
New Hampshire Henry Hubbard Democratic 105 1842-06-02 1844-06-06 1842 1844 6 6 2 6
Illinois Thomas Ford Democratic 209 1842-12-08 1846-12-09 1842 1846 12 12 8 9
South Carolina James Henry Hammond Democratic 104 1842-12-08 1844-12-07 1842 1844 12 12 8 7
Ohio Wilson Shannon Democratic 70 1842-12-14 1844-04-15 1842 1844 12 4 14 15
New York William Christian Bouck Democratic 104 1842-12-31 1844-12-31 1842 1844 12 12 31 31
Virginia James McDowell Democratic 156 1843-01-05 1846-01-01 1843 1846 1 1 5 1
Massachusetts Marcus Morton Democratic 51 1843-01-17 1844-01-09 1843 1844 1 1 17 9
Louisiana Alexandre Mouton Democratic 158 1843-01-30 1846-02-12 1843 1846 1 2 30 12
Maine Edward Kavanagh Democratic 43 1843-03-07 1844-01-01 1843 1844 3 1 7 1
Rhode Island James Fenner Law and Order 105 1843-05-02 1845-05-06 1843 1845 5 5 2 6
Vermont John Mattocks Whig 52 1843-10-13 1844-10-11 1843 1844 10 10 13 11
New Jersey Daniel Haines Democratic 65 1843-10-27 1845-01-21 1843 1845 10 1 27 21
Georgia George Walker Crawford Whig 208 1843-11-08 1847-11-03 1843 1847 11 11 8 3
Indiana James Whitcomb Democratic 264 1843-12-06 1848-12-27 1843 1848 12 12 6 27
Maine David Dunn Democratic 0 1844-01-01 1844-01-03 1844 1844 1 1 1 3
Maine John Winchester Dana Democratic 0 1844-01-03 1844-01-03 1844 1844 1 1 3 3
Maine Hugh Johnston Anderson Democratic 166 1844-01-03 1847-03-12 1844 1847 1 3 3 12
Massachusetts George Nixon Briggs Whig 366 1844-01-09 1851-01-11 1844 1851 1 1 9 11
Mississippi Albert Gallatin Brown Democratic 209 1844-01-10 1848-01-10 1844 1848 1 1 10 10
Missouri Meredith Miles Marmaduke Democratic 41 1844-02-09 1844-11-20 1844 1844 2 11 9 20
Ohio Thomas Welles Bartley Democratic 33 1844-04-15 1844-12-03 1844 1844 4 12 15 3
Arkansas Samuel Adams Democratic 28 1844-04-29 1844-11-09 1844 1844 4 11 29 9
Connecticut Roger Sherman Baldwin Whig 105 1844-05-01 1846-05-06 1844 1846 5 5 1 6
New Hampshire John Hardy Steele Democratic 104 1844-06-06 1846-06-04 1844 1846 6 6 6 4
Kentucky William Owsley Whig 209 1844-09-04 1848-09-06 1844 1848 9 9 4 6
Vermont William Slade Jr.  Whig 104 1844-10-11 1846-10-09 1844 1846 10 10 11 9
Arkansas Thomas Stevenson Drew Democratic 218 1844-11-09 1849-01-10 1844 1849 11 1 9 10
Missouri John Cummins Edwards Democratic 209 1844-11-20 1848-11-20 1844 1848 11 11 20 20
Ohio Mordecai Bartley Whig 106 1844-12-03 1846-12-12 1844 1846 12 12 3 12
South Carolina William Aiken Jr.  Democratic 104 1844-12-07 1846-12-08 1844 1846 12 12 7 8
New York Silas Wright Jr.  Democratic 104 1844-12-31 1846-12-31 1844 1846 12 12 31 31
North Carolina William Alexander Graham Whig 209 1845-01-01 1849-01-01 1845 1849 1 1 1 1
Maryland Thomas George Pratt Whig 156 1845-01-06 1848-01-03 1845 1848 1 1 6 3
Delaware Thomas Stockton Whig 58 1845-01-21 1846-03-02 1845 1846 1 3 21 2
New Jersey Charles Creighton Stratton Whig 156 1845-01-21 1848-01-18 1845 1848 1 1 21 18
Pennsylvania Francis Rawn Shunk Democratic 181 1845-01-21 1848-07-09 1845 1848 1 7 21 9
Rhode Island Charles Jackson Whig 52 1845-05-06 1846-05-06 1845 1846 5 5 6 6
Florida William Dunn Moseley Democratic 5440 1845-06-25 1949-10-01 1845 1949 6 10 25 1
Tennessee Aaron Venable Brown Democratic 105 1845-10-14 1847-10-17 1845 1847 10 10 14 17
Alabama Joshua Lanier Martin Democratic 105 1845-12-10 1847-12-16 1845 1847 12 12 10 16
Virginia William Smith Democratic 157 1846-01-01 1849-01-01 1846 1849 1 1 1 1
Michigan Alpheus Felch Democratic 60 1846-01-05 1847-03-03 1846 1847 1 3 5 3
Louisiana Isaac Johnson Democratic 207 1846-02-12 1850-01-28 1846 1850 2 1 12 28
Texas James Pinckney Henderson Democratic 96 1846-02-19 1847-12-21 1846 1847 2 12 19 21
Delaware Joseph Maull Whig 9 1846-03-02 1846-05-03 1846 1846 3 5 2 3
Delaware William Temple Whig 37 1846-05-03 1847-01-19 1846 1847 5 1 3 19
Connecticut Isaac Toucey Democratic 52 1846-05-06 1847-05-05 1846 1847 5 5 6 5
Rhode Island Byron Diman Law and Order 52 1846-05-06 1847-05-04 1846 1847 5 5 6 4
New Hampshire Anthony Colby Whig 52 1846-06-04 1847-06-03 1846 1847 6 6 4 3
Vermont Horace Eaton Whig 104 1846-10-09 1848-10-09 1846 1848 10 10 9 9
Iowa Ansel Briggs Democratic 209 1846-12-03 1850-12-04 1846 1850 12 12 3 4
South Carolina David Johnson Democratic 105 1846-12-08 1848-12-12 1846 1848 12 12 8 12
Illinois Augustus Chaflin French Democratic 318 1846-12-09 1853-01-10 1846 1853 12 1 9 10
Ohio William Bebb Whig 110 1846-12-12 1849-01-22 1846 1849 12 1 12 22
New York John Young Whig 104 1846-12-31 1848-12-31 1846 1848 12 12 31 31
Delaware William Tharp Democratic 209 1847-01-19 1851-01-21 1847 1851 1 1 19 21
Michigan William L. Greenly Democratic 44 1847-03-03 1848-01-03 1847 1848 3 1 3 3
Maine John Winchester Dana Democratic 165 1847-03-12 1850-05-08 1847 1850 3 5 12 8
Rhode Island Elisha Harris Whig 104 1847-05-04 1849-05-01 1847 1849 5 5 4 1
Connecticut Clark Bissell Whig 104 1847-05-05 1849-05-02 1847 1849 5 5 5 2
New Hampshire Jared Warner Williams Democratic 105 1847-06-03 1849-06-07 1847 1849 6 6 3 7
Tennessee Neill Smith Brown Whig 104 1847-10-17 1849-10-16 1847 1849 10 10 17 16
Georgia George Washington Bonaparte Towns Democratic 209 1847-11-03 1851-11-05 1847 1851 11 11 3 5
Alabama Reuben Chapman Democratic 105 1847-12-16 1849-12-17 1847 1849 12 12 16 17
Texas George Tyler Wood Democratic 104 1847-12-21 1849-12-21 1847 1849 12 12 21 21
Maryland Philip Francis Thomas Democratic 157 1848-01-03 1851-01-06 1848 1851 1 1 3 6
Michigan Epaphroditus Ransom Democratic 105 1848-01-03 1850-01-07 1848 1850 1 1 3 7
Mississippi Joseph Warren Matthews Democratic 104 1848-01-10 1850-01-10 1848 1850 1 1 10 10
New Jersey Daniel Haines Democratic 157 1848-01-18 1851-01-21 1848 1851 1 1 18 21
Wisconsin Nelson Webster Dewey Democratic 187 1848-06-07 1852-01-05 1848 1852 6 1 7 5
Pennsylvania William Freame Johnston Whig 182 1848-07-26 1852-01-20 1848 1852 7 1 26 20
Kentucky John Jordan Crittenden Whig 99 1848-09-06 1850-07-31 1848 1850 9 7 6 31
Vermont Carlos Coolidge Whig 105 1848-10-09 1850-10-11 1848 1850 10 10 9 11
Missouri Austin Augustus King Democratic 215 1848-11-20 1853-01-03 1848 1853 11 1 20 3
South Carolina Whitemarsh Benjamin Seabrook Democratic 104 1848-12-12 1850-12-13 1848 1850 12 12 12 13
Indiana Paris Chipman Dunning Democratic 49 1848-12-27 1849-12-05 1848 1849 12 12 27 5
New York Hamilton Fish Whig 104 1848-12-31 1850-12-31 1848 1850 12 12 31 31
North Carolina Charles Manly Democratic 104 1849-01-01 1851-01-01 1849 1851 1 1 1 1
Virginia John Buchanan Floyd Democratic 156 1849-01-01 1852-01-01 1849 1852 1 1 1 1
Arkansas Richard C. Byrd Democratic 14 1849-01-10 1849-04-19 1849 1849 1 4 10 19
Ohio Seabury Ford Whig 98 1849-01-22 1850-12-12 1849 1850 1 12 22 12
Arkansas John Selden Roane Democratic 187 1849-04-19 1852-11-15 1849 1852 4 11 19 15
Rhode Island Henry Bowen Anthony Whig 105 1849-05-01 1851-05-06 1849 1851 5 5 1 6
Connecticut Joseph Trumbull Whig 52 1849-05-02 1850-05-04 1849 1850 5 5 2 4
New Hampshire Samuel Dinsmoor Jr.  Democratic 156 1849-06-07 1852-06-03 1849 1852 6 6 7 3
Florida Thomas Brown Whig 209 1849-10-01 1853-10-03 1849 1853 10 10 1 3
Tennessee William Trousdale Democratic 104 1849-10-16 1851-10-16 1849 1851 10 10 16 16
Indiana Joseph Albert Wright Democratic 371 1849-12-05 1857-01-12 1849 1857 12 1 5 12
Alabama Henry Watkins Collier Democratic 209 1849-12-17 1853-12-20 1849 1853 12 12 17 20
California Peter Hardeman Burnett Democratic 55 1849-12-20 1851-01-09 1849 1851 12 1 20 9
Texas Peter Hansborough Bell Democratic 205 1849-12-21 1853-11-23 1849 1853 12 11 21 23
Michigan John Stewart Barry Democratic 103 1850-01-07 1852-01-01 1850 1852 1 1 7 1
Mississippi John Anthony Quitman Democratic 56 1850-01-10 1851-02-03 1850 1851 1 2 10 3
Louisiana Joseph Marshall Walker Democratic 155 1850-01-28 1853-01-18 1850 1853 1 1 28 18
Connecticut Thomas Hart Seymour Democratic 180 1850-05-04 1853-10-13 1850 1853 5 10 4 13
Maine John Hubbard Democratic 139 1850-05-08 1853-01-05 1850 1853 5 1 8 5
Kentucky John LaRue Helm Whig 57 1850-07-31 1851-09-02 1850 1851 7 9 31 2
Vermont Charles Kilbourne Williams Whig 104 1850-10-11 1852-10-11 1850 1852 10 10 11 11
Iowa Stephen P. Hempstead Democratic 209 1850-12-04 1854-12-09 1850 1854 12 12 4 9
Ohio Reuben Wood Democratic 135 1850-12-12 1853-07-13 1850 1853 12 7 12 13
South Carolina John Hugh Means Democratic 104 1850-12-13 1852-12-09 1850 1852 12 12 13 9
New York Washington Hunt Whig 104 1850-12-31 1852-12-31 1850 1852 12 12 31 31
North Carolina David Settle Reid Democratic 205 1851-01-01 1854-12-06 1851 1854 1 12 1 6
Maryland Enoch Louis Lowe Democratic 157 1851-01-06 1854-01-11 1851 1854 1 1 6 11
California John McDougal Democratic 52 1851-01-09 1852-01-08 1851 1852 1 1 9 8
Massachusetts George Sewall Boutwell Democratic 105 1851-01-11 1853-01-14 1851 1853 1 1 11 14
Delaware William Henry Harrison Ross Democratic 208 1851-01-21 1855-01-16 1851 1855 1 1 21 16
New Jersey George Franklin Fort Democratic 156 1851-01-21 1854-01-17 1851 1854 1 1 21 17
Mississippi John Isaac Guion Democratic 39 1851-02-03 1851-11-04 1851 1851 2 11 3 4
Rhode Island Philip Allen Democratic 115 1851-05-06 1853-07-20 1851 1853 5 7 6 20
Kentucky Lazarus Whitehead Powell Democratic 209 1851-09-02 1855-09-04 1851 1855 9 9 2 4
Tennessee William Bowen Campbell Whig 105 1851-10-16 1853-10-17 1851 1853 10 10 16 17
Mississippi James Whitfield Democratic 10 1851-11-04 1852-01-10 1851 1852 11 1 4 10
Georgia Howell Cobb Constitutional Union 105 1851-11-05 1853-11-09 1851 1853 11 11 5 9
Michigan Robert McClelland Democratic 62 1852-01-01 1853-03-07 1852 1853 1 3 1 7
Virginia Joseph Ellis Johnson Democratic 209 1852-01-01 1856-01-01 1852 1856 1 1 1 1
Wisconsin Leonard James Farwell Whig 104 1852-01-05 1854-01-02 1852 1854 1 1 5 2
California John Bigler Democratic 209 1852-01-08 1856-01-09 1852 1856 1 1 8 9
Mississippi Henry Stuart Foote Constitutional Union 104 1852-01-10 1854-01-05 1852 1854 1 1 10 5
Pennsylvania William Bigler Democratic 5374 1852-01-20 1955-01-16 1852 1955 1 1 20 16
New Hampshire Noah Martin Democratic 105 1852-06-03 1854-06-08 1852 1854 6 6 3 8
Vermont Erastus Fairbanks Whig 54 1852-10-11 1853-10-27 1852 1853 10 10 11 27
Arkansas Elias Nelson Conway Democratic 418 1852-11-15 1860-11-16 1852 1860 11 11 15 16
South Carolina John Lawrence Manning Democratic 105 1852-12-09 1854-12-11 1852 1854 12 12 9 11
New York Horatio Seymour Democratic 104 1852-12-31 1854-12-31 1852 1854 12 12 31 31
Missouri Sterling Price Democratic 209 1853-01-03 1857-01-05 1853 1857 1 1 3 5
Maine William George Crosby Whig 104 1853-01-05 1855-01-03 1853 1855 1 1 5 3
Illinois Joel Aldrich Matteson Democratic 209 1853-01-10 1857-01-12 1853 1857 1 1 10 12
Massachusetts John Henry Clifford Whig 52 1853-01-14 1854-01-12 1853 1854 1 1 14 12
Louisiana Paul Octave Hebert Democratic 158 1853-01-18 1856-01-28 1853 1856 1 1 18 28
Michigan Andrew Parsons Democratic 95 1853-03-07 1855-01-03 1853 1855 3 1 7 3
Ohio William Medill Democratic 131 1853-07-13 1856-01-14 1853 1856 7 1 13 14
Rhode Island Francis Moore Dimond Democratic 41 1853-07-20 1854-05-02 1853 1854 7 5 20 2
Florida James Emilius Broome Democratic 209 1853-10-03 1857-10-05 1853 1857 10 10 3 5
Connecticut Charles Hobby Pond Democratic 29 1853-10-13 1854-05-03 1853 1854 10 5 13 3
Tennessee Andrew Johnson Democratic 211 1853-10-17 1857-11-03 1853 1857 10 11 17 3
Vermont John Staniford Robinson Democratic 50 1853-10-27 1854-10-13 1853 1854 10 10 27 13
Georgia Herschel Vespasian Johnson Democratic 208 1853-11-09 1857-11-06 1853 1857 11 11 9 6
Texas James Wilson Henderson Democratic 4 1853-11-23 1853-12-21 1853 1853 11 12 23 21
Alabama John Anthony Winston Democratic 206 1853-12-20 1857-12-01 1853 1857 12 12 20 1
Texas Elisha Marshall Pease National Union 209 1853-12-21 1857-12-21 1853 1857 12 12 21 21
Wisconsin William Augustus Barstow Democratic 116 1854-01-02 1856-03-21 1854 1856 1 3 2 21
Mississippi John Jones Pettus Democratic 1 1854-01-05 1854-01-10 1854 1854 1 1 5 10
Mississippi John Jones McRae Democratic 201 1854-01-10 1857-11-16 1854 1857 1 11 10 16
Maryland Thomas Watkins Ligon Democratic 209 1854-01-11 1858-01-13 1854 1858 1 1 11 13
Massachusetts Emory Washburn Whig 51 1854-01-12 1855-01-04 1854 1855 1 1 12 4
New Jersey Rodman McCamley Price Democratic 157 1854-01-17 1857-01-20 1854 1857 1 1 17 20
Rhode Island William Warner Hoppin Whig 160 1854-05-02 1857-05-26 1854 1857 5 5 2 26
Connecticut Henry Dutton Whig 52 1854-05-03 1855-05-02 1854 1855 5 5 3 2
New Hampshire Nathaniel Bradley Baker Democratic 52 1854-06-08 1855-06-07 1854 1855 6 6 8 7
Vermont Stephen Royce Whig 104 1854-10-13 1856-10-10 1854 1856 10 10 13 10
North Carolina Warren Winslow Democratic 4 1854-12-06 1855-01-01 1854 1855 12 1 6 1
Iowa James Wilson Grimes Whig 162 1854-12-09 1858-01-13 1854 1858 12 1 9 13
South Carolina James Hopkins Adams Democratic 104 1854-12-11 1856-12-09 1854 1856 12 12 11 9
New York Myron Holley Clark Whig 104 1854-12-31 1856-12-31 1854 1856 12 12 31 31
North Carolina Thomas Bragg Democratic 209 1855-01-01 1859-01-01 1855 1859 1 1 1 1
Maine Anson Peaslee Morrill Republican 52 1855-01-03 1856-01-02 1855 1856 1 1 3 2
Michigan Kinsley Scott Bingham Republican 209 1855-01-03 1859-01-05 1855 1859 1 1 3 5
Massachusetts Henry Joseph Gardner Know Nothing 157 1855-01-04 1858-01-07 1855 1858 1 1 4 7
Delaware Peter Foster Causey Know Nothing 209 1855-01-16 1859-01-18 1855 1859 1 1 16 18
Pennsylvania James Pollock Whig 157 1855-01-16 1858-01-19 1855 1858 1 1 16 19
Connecticut William Thomas Minor Know Nothing 105 1855-05-02 1857-05-06 1855 1857 5 5 2 6
New Hampshire Ralph Metcalf Know Nothing 104 1855-06-07 1857-06-04 1855 1857 6 6 7 4
Kentucky Charles Slaughter Morehead Populist 208 1855-09-04 1859-08-30 1855 1859 9 8 4 30
Virginia Henry Alexander Wise Democratic 209 1856-01-01 1860-01-01 1856 1860 1 1 1 1
Maine Samuel Wells Democratic 53 1856-01-02 1857-01-08 1856 1857 1 1 2 8
California John Neely Johnson Know Nothing 104 1856-01-09 1858-01-08 1856 1858 1 1 9 8
Ohio Salmon Portland Chase Republican 208 1856-01-14 1860-01-09 1856 1860 1 1 14 9
Louisiana Robert Charles Wickliffe Democratic 208 1856-01-28 1860-01-23 1856 1860 1 1 28 23
Wisconsin Arthur MacArthur Sr.  Democratic 1 1856-03-21 1856-03-25 1856 1856 3 3 21 25
Wisconsin Coles Bashford Republican 93 1856-03-25 1858-01-04 1856 1858 3 1 25 4
Vermont Ryland Fletcher Republican 104 1856-10-10 1858-10-10 1856 1858 10 10 10 10
South Carolina Robert Francis Withers Allston Democratic 104 1856-12-09 1858-12-10 1856 1858 12 12 9 10
New York John Alsop King Republican 104 1856-12-31 1858-12-31 1856 1858 12 12 31 31
Missouri Trusten W. Polk Democratic 8 1857-01-05 1857-02-27 1857 1857 1 2 5 27
Maine Hannibal Hamlin Republican 7 1857-01-08 1857-02-25 1857 1857 1 2 8 25
Illinois William Henry Bissell Republican 166 1857-01-12 1860-03-18 1857 1860 1 3 12 18
Indiana Ashbel Parsons Willard Democratic 194 1857-01-12 1860-10-04 1857 1860 1 10 12 4
New Jersey William Augustus Newell Republican 156 1857-01-20 1860-01-17 1857 1860 1 1 20 17
Maine Joseph Hartwell Williams Republican 45 1857-02-25 1858-01-06 1857 1858 2 1 25 6
Missouri Hancock Lee Jackson Democratic 34 1857-02-27 1857-10-22 1857 1857 2 10 27 22
Connecticut Alexander Hamilton Holley Republican 52 1857-05-06 1858-05-05 1857 1858 5 5 6 5
Rhode Island Elisha Dyer Republican 105 1857-05-26 1859-05-31 1857 1859 5 5 26 31
New Hampshire William Haile Republican 104 1857-06-04 1859-06-02 1857 1859 6 6 4 2
Florida Madison Starke Perry Democratic 209 1857-10-05 1861-10-07 1857 1861 10 10 5 7
Missouri Robert Marcellus Stewart Democratic 167 1857-10-22 1861-01-03 1857 1861 10 1 22 3
Tennessee Isham Green Harris Democratic 227 1857-11-03 1862-03-12 1857 1862 11 3 3 12
Georgia Joseph Emerson Brown Democratic 397 1857-11-06 1865-06-17 1857 1865 11 6 6 17
Mississippi William McWillie Democratic 105 1857-11-16 1859-11-21 1857 1859 11 11 16 21
Alabama Andrew Barry Moore Democratic 209 1857-12-01 1861-12-02 1857 1861 12 12 1 2
Texas Hardin Richard Runnels Democratic 104 1857-12-21 1859-12-21 1857 1859 12 12 21 21
Wisconsin Alexander Williams Randall Republican 209 1858-01-04 1862-01-06 1858 1862 1 1 4 6
Maine Lot Myrick Morrill Republican 156 1858-01-06 1861-01-02 1858 1861 1 1 6 2
Massachusetts Nathaniel Prentice Banks Republican 156 1858-01-07 1861-01-03 1858 1861 1 1 7 3
California John B. Weller Democratic 104 1858-01-08 1860-01-09 1858 1860 1 1 8 9
Iowa Ralph Phillips Lowe Republican 104 1858-01-13 1860-01-11 1858 1860 1 1 13 11
Maryland Thomas Holliday Hicks Constitutional Union 208 1858-01-13 1862-01-08 1858 1862 1 1 13 8
Pennsylvania William Fisher Packer Democratic 156 1858-01-19 1861-01-15 1858 1861 1 1 19 15
Connecticut William Alfred Buckingham Republican 417 1858-05-05 1866-05-02 1858 1866 5 5 5 2
Minnesota Henry Hastings Sibley Democratic 84 1858-05-24 1860-01-02 1858 1860 5 1 24 2
Vermont Hiland Hall Republican 105 1858-10-10 1860-10-12 1858 1860 10 10 10 12
South Carolina William Henry Gist Democratic 105 1858-12-10 1860-12-14 1858 1860 12 12 10 14
New York Edwin Denison Morgan Republican 209 1858-12-31 1862-12-31 1858 1862 12 12 31 31
North Carolina John Willis Ellis Democratic 131 1859-01-01 1861-07-07 1859 1861 1 7 1 7
Michigan Moses Wisner Republican 104 1859-01-05 1861-01-02 1859 1861 1 1 5 2
Delaware William Burton Democratic 209 1859-01-18 1863-01-20 1859 1863 1 1 18 20
Oregon John Whiteaker Democratic 184 1859-03-03 1862-09-10 1859 1862 3 9 3 10
Rhode Island Thomas Goodwin Turner Republican 52 1859-05-31 1860-05-29 1859 1860 5 5 31 29
New Hampshire Ichabod Goodwin Republican 105 1859-06-02 1861-06-06 1859 1861 6 6 2 6
Kentucky Beriah Magoffin Democratic 155 1859-08-30 1862-08-18 1859 1862 8 8 30 18
Mississippi John Jones Pettus Democratic 208 1859-11-21 1863-11-16 1859 1863 11 11 21 16
Texas Samuel Houston Independent 64 1859-12-21 1861-03-16 1859 1861 12 3 21 16
Virginia John Letcher Democratic 71 1860-01-01 1861-05-15 1860 1861 1 5 1 15
Minnesota Alexander Ramsey Republican 184 1860-01-02 1863-07-10 1860 1863 1 7 2 10
California Milton Slocum Latham Democratic 1 1860-01-09 1860-01-14 1860 1860 1 1 9 14
Ohio William Dennison Jr.  Republican 105 1860-01-09 1862-01-13 1860 1862 1 1 9 13
Iowa Samuel Jordan Kirkwood Republican 209 1860-01-11 1864-01-14 1860 1864 1 1 11 14
California John Gately Downey Democratic 104 1860-01-14 1862-01-10 1860 1862 1 1 14 10
New Jersey Charles Smith Olden Republican 157 1860-01-17 1863-01-20 1860 1863 1 1 17 20
Louisiana Thomas Overton Moore Democratic 209 1860-01-23 1864-01-25 1860 1864 1 1 23 25
Illinois John Wood Republican 43 1860-03-18 1861-01-14 1860 1861 3 1 18 14
Rhode Island William Sprague IV Republican 144 1860-05-29 1863-03-03 1860 1863 5 3 29 3
Indiana Abram Adams Hammond Democratic 15 1860-10-04 1861-01-14 1860 1861 10 1 4 14
Vermont Erastus Fairbanks Republican 52 1860-10-12 1861-10-11 1860 1861 10 10 12 11
Arkansas Henry Massie Rector Democratic 103 1860-11-16 1862-11-04 1860 1862 11 11 16 4
South Carolina Francis Wilkinson Pickens Democratic 105 1860-12-14 1862-12-17 1860 1862 12 12 14 17
Maine Israel Washburn Jr.  Republican 105 1861-01-02 1863-01-07 1861 1863 1 1 2 7
Michigan Austin Blair Republican 209 1861-01-02 1865-01-03 1861 1865 1 1 2 3
Massachusetts John Albion Andrew Republican 261 1861-01-03 1866-01-04 1861 1866 1 1 3 4
Missouri Claiborne Fox Jackson Democratic 29 1861-01-03 1861-07-23 1861 1861 1 7 3 23
Illinois Richard Yates Republican 209 1861-01-14 1865-01-16 1861 1865 1 1 14 16
Indiana Henry Smith Lane Republican 0 1861-01-14 1861-01-16 1861 1861 1 1 14 16
Pennsylvania Andrew Gregg Curtin Republican 313 1861-01-15 1867-01-15 1861 1867 1 1 15 15
Indiana Oliver Hazard Perry Throck Morton Republican 314 1861-01-16 1867-01-24 1861 1867 1 1 16 24
Kansas Charles Lawrence Robinson Republican 100 1861-02-09 1863-01-12 1861 1863 2 1 9 12
Texas Edward Clark Democratic 34 1861-03-16 1861-11-07 1861 1861 3 11 16 7
Virginia Francis Harrison Pierpont Republican 359 1861-05-15 1868-04-04 1861 1868 5 4 15 4
New Hampshire Nathaniel Springer Berry Republican 104 1861-06-06 1863-06-03 1861 1863 6 6 6 3
North Carolina Henry Toole Clark Conservative 61 1861-07-07 1862-09-08 1861 1862 7 9 7 8
Missouri Hamilton Rowan Gamble Republican 132 1861-07-23 1864-01-31 1861 1864 7 1 23 31
Florida John Milton Democratic 182 1861-10-07 1865-04-01 1861 1865 10 4 7 1
Vermont Frederick Holbrook Republican 104 1861-10-11 1863-10-09 1861 1863 10 10 11 9
Texas Francis Richard Lubbock Democratic 104 1861-11-07 1863-11-05 1861 1863 11 11 7 5
Alabama John Gill Shorter Democratic 104 1861-12-02 1863-12-01 1861 1863 12 12 2 1
Wisconsin Louis Powell Harvey Republican 15 1862-01-06 1862-04-19 1862 1862 1 4 6 19
Maryland Augustus Williamson Bradford Republican 209 1862-01-08 1866-01-10 1862 1866 1 1 8 10
California Amasa Leland Stanford Republican 100 1862-01-10 1863-12-10 1862 1863 1 12 10 10
Ohio David Tod Republican 104 1862-01-13 1864-01-11 1862 1864 1 1 13 11
Tennessee Andrew Johnson National Union 156 1862-03-12 1865-03-05 1862 1865 3 3 12 5
Wisconsin Edward Salomon Republican 89 1862-04-19 1864-01-04 1862 1864 4 1 19 4
Kentucky James Fisher Robinson Democratic 54 1862-08-18 1863-09-01 1862 1863 8 9 18 1
North Carolina Zebulon Baird Vance National Union 142 1862-09-08 1865-05-29 1862 1865 9 5 8 29
Oregon Addison Crandall Gibbs Republican 209 1862-09-10 1866-09-12 1862 1866 9 9 10 12
Arkansas Thomas Fletcher Independent 2 1862-11-04 1862-11-15 1862 1862 11 11 4 15
Arkansas Harris Flanagin Independent 132 1862-11-15 1865-05-28 1862 1865 11 5 15 28
South Carolina Milledge Luke Bonham Democratic 105 1862-12-17 1864-12-18 1862 1864 12 12 17 18
New York Horatio Seymour Democratic 104 1862-12-31 1864-12-31 1862 1864 12 12 31 31
Maine Abner Coburn Republican 52 1863-01-07 1864-01-06 1863 1864 1 1 7 6
Kansas Thomas Carney Republican 104 1863-01-12 1865-01-09 1863 1865 1 1 12 9
Delaware William Cannon Republican 5328 1863-01-20 1965-03-01 1863 1965 1 3 20 1
New Jersey Joel Parker Democratic 156 1863-01-20 1866-01-16 1863 1866 1 1 20 16
Rhode Island William Cole Cozzens Democratic 12 1863-03-03 1863-05-26 1863 1863 3 5 3 26
Rhode Island James Youngs Smith Republican 157 1863-05-26 1866-05-29 1863 1866 5 5 26 29
New Hampshire Joseph Albree Gilmore Republican 105 1863-06-03 1865-06-08 1863 1865 6 6 3 8
West Virginia Arthur Ingram Boreman Republican 297 1863-06-20 1869-02-26 1863 1869 6 2 20 26
Minnesota Henry Adoniram Swift Republican 26 1863-07-10 1864-01-11 1863 1864 7 1 10 11
Kentucky Thomas Elliot Bramlette Democratic 209 1863-09-01 1867-09-03 1863 1867 9 9 1 3
Vermont John Gregory Smith Republican 105 1863-10-09 1865-10-13 1863 1865 10 10 9 13
Texas Penleton Murrah Democratic 83 1863-11-05 1865-06-11 1863 1865 11 6 5 11
Mississippi Charles Clark Democratic 79 1863-11-16 1865-05-22 1863 1865 11 5 16 22
Alabama Thomas Hill Watts Sr.  Whig 74 1863-12-01 1865-05-03 1863 1865 12 5 1 3
California Frederick Ferdinand Low Republican 208 1863-12-10 1867-12-05 1863 1867 12 12 10 5
Virginia William Smith Democratic 71 1864-01-01 1865-05-09 1864 1865 1 5 1 9
Wisconsin James Taylor Lewis Republican 104 1864-01-04 1866-01-01 1864 1866 1 1 4 1
Maine Samuel Cony Republican 156 1864-01-06 1867-01-02 1864 1867 1 1 6 2
Minnesota Stephen Miller Republican 104 1864-01-11 1866-01-08 1864 1866 1 1 11 8
Ohio John Brough Constitutional Union 85 1864-01-11 1865-08-29 1864 1865 1 8 11 29
Iowa William Milo Stone Republican 209 1864-01-14 1868-01-16 1864 1868 1 1 14 16
Louisiana George Foster Shepley Military Governor 6 1864-01-25 1864-03-04 1864 1864 1 3 25 4
Louisiana Henry Watkins Allen Democratic 71 1864-01-25 1865-06-02 1864 1865 1 6 25 2
Missouri William Willard Preble Hall Republican 48 1864-01-31 1865-01-02 1864 1865 1 1 31 2
Louisiana George Michael Decker Hahn Republican 52 1864-03-04 1865-03-04 1864 1865 3 3 4 4
Arkansas Isaac Murphy Independent 219 1864-04-18 1868-07-02 1864 1868 4 7 18 2
Nevada Henry Goode Blasdel Republican 317 1864-12-05 1871-01-02 1864 1871 12 1 5 2
South Carolina Andrew Gordon Magrath Democratic 23 1864-12-18 1865-05-25 1864 1865 12 5 18 25
New York Reuben Eaton Fenton Republican 209 1864-12-31 1868-12-31 1864 1868 12 12 31 31
Missouri Thomas Clement Fletcher Republican 210 1865-01-02 1869-01-12 1865 1869 1 1 2 12
Michigan Henry Howland Crapo Republican 209 1865-01-03 1869-01-06 1865 1869 1 1 3 6
Kansas Samuel Johnson Crawford Republican 199 1865-01-09 1868-11-04 1865 1868 1 11 9 4
Illinois Richard James Oglesby Republican 208 1865-01-16 1869-01-11 1865 1869 1 1 16 11
Delaware Gove Saulsbury Democratic 307 1865-03-01 1871-01-17 1865 1871 3 1 1 17
Louisiana James Madison Wells Republican 117 1865-03-04 1867-06-03 1865 1867 3 6 4 3
Tennessee Edward Hazzard East Republican 4 1865-03-05 1865-04-05 1865 1865 3 4 5 5
Florida Abraham Kurkindolle Allison Democratic 7 1865-04-01 1865-05-19 1865 1865 4 5 1 19
Tennessee William Gannaway Brownlow Republican 203 1865-04-05 1869-02-25 1865 1869 4 2 5 25
Florida William Marvin Military Governor 31 1865-05-19 1865-12-20 1865 1865 5 12 19 20
North Carolina William Woods Holden Conservative 29 1865-05-29 1865-12-15 1865 1865 5 12 29 15
New Hampshire Frederick Smyth Republican 104 1865-06-08 1867-06-06 1865 1867 6 6 8 6
Texas Fletcher Summerfield Stockdale Military Governor 1 1865-06-11 1865-06-16 1865 1865 6 6 11 16
Mississippi William Lewis Sharkey Independent 18 1865-06-13 1865-10-16 1865 1865 6 10 13 16
Texas Andrew Jackson Hamilton Democratic 60 1865-06-16 1866-08-09 1865 1866 6 8 16 9
Georgia James Johnson Democratic 26 1865-06-17 1865-12-14 1865 1865 6 12 17 14
Alabama Lewis Eliphalet Parsons Military Governor 25 1865-06-21 1865-12-13 1865 1865 6 12 21 13
South Carolina Benjamin Franklin Perry Democratic 21 1865-06-30 1865-11-26 1865 1865 6 11 30 26
Ohio Charles Anderson Republican 19 1865-08-29 1866-01-08 1865 1866 8 1 29 8
Vermont Paul Dillingham Jr.  Republican 104 1865-10-13 1867-10-13 1865 1867 10 10 13 13
Mississippi Benjamin Grubb Humphreys Democratic 139 1865-10-16 1868-06-15 1865 1868 10 6 16 15
South Carolina James Lawrence Orr Independent 136 1865-11-26 1868-07-06 1865 1868 11 7 26 6
Alabama Robert Miller Patton Whig 135 1865-12-13 1868-07-14 1865 1868 12 7 13 14
Georgia Charles Jones Jenkins Democratic 109 1865-12-14 1868-01-13 1865 1868 12 1 14 13
North Carolina Jonathan Worth Republican 133 1865-12-15 1868-07-01 1865 1868 12 7 15 1
Florida David Shelby Walker Democratic 132 1865-12-20 1868-07-04 1865 1868 12 7 20 4
Wisconsin Lucius Fairchild Republican 313 1866-01-01 1872-01-01 1866 1872 1 1 1 1
Massachusetts Alexander Hamilton Bullock Republican 157 1866-01-04 1869-01-07 1866 1869 1 1 4 7
Minnesota William Rainey Marshall Republican 209 1866-01-08 1870-01-09 1866 1870 1 1 8 9
Ohio Jacob Dolson Cox Jr.  Republican 105 1866-01-08 1868-01-13 1866 1868 1 1 8 13
Maryland Thomas Swann Republican 157 1866-01-10 1869-01-13 1866 1869 1 1 10 13
New Jersey Marcus Lawrence Ward Republican 157 1866-01-16 1869-01-19 1866 1869 1 1 16 19
Connecticut Joseph Roswell Hawley Republican 52 1866-05-02 1867-05-01 1866 1867 5 5 2 1
Rhode Island Ambrose Everett Burnside Republican 156 1866-05-29 1869-05-25 1866 1869 5 5 29 25
Texas James Webb Throckmorton Democratic 52 1866-08-09 1867-08-08 1866 1867 8 8 9 8
Oregon George Lemuel Woods Republican 209 1866-09-12 1870-09-14 1866 1870 9 9 12 14
Maine Joshua Lawrence Chamberlain Republican 209 1867-01-02 1871-01-04 1867 1871 1 1 2 4
Pennsylvania John White Geary Republican 314 1867-01-15 1873-01-21 1867 1873 1 1 15 21
Indiana Conrad Baker Republican 312 1867-01-24 1873-01-13 1867 1873 1 1 24 13
Nebraska David Christy Butler Republican 223 1867-02-21 1871-06-02 1867 1871 2 6 21 2
Alabama Wager Swayne Military Governor 45 1867-03-02 1868-01-11 1867 1868 3 1 2 11
Connecticut James Edward English Democratic 105 1867-05-01 1869-05-05 1867 1869 5 5 1 5
Louisiana Benjamin Franklin Flanders Republican 30 1867-06-03 1868-01-02 1867 1868 6 1 3 2
New Hampshire Walter Harriman Republican 104 1867-06-06 1869-06-03 1867 1869 6 6 6 3
Texas Elisha Marshall Pease Republican 112 1867-08-08 1869-09-30 1867 1869 8 9 8 30
Kentucky John LaRue Helm Democratic 1 1867-09-03 1867-09-08 1867 1867 9 9 3 8
Kentucky John White Stevenson Democratic 178 1867-09-08 1871-02-03 1867 1871 9 2 8 3
Vermont John Boardman Page Republican 105 1867-10-13 1869-10-15 1867 1869 10 10 13 15
California Henry Huntly Haight Democratic 209 1867-12-05 1871-12-08 1867 1871 12 12 5 8
Louisiana Joshua Gabriel Baker Democratic 25 1868-01-02 1868-06-27 1868 1868 1 6 2 27
Georgia Thomas Howard Ruger Military Governor 25 1868-01-13 1868-07-04 1868 1868 1 7 13 4
Ohio Rutherford Birchard Hayes Republican 208 1868-01-13 1872-01-08 1868 1872 1 1 13 8
Iowa Samuel Merrill Republican 208 1868-01-16 1872-01-11 1868 1872 1 1 16 11
Virginia Henry Horatio Wells Republican 76 1868-04-04 1869-09-21 1868 1869 4 9 4 21
Mississippi Adelbert C. Ames Military Governor 90 1868-06-15 1870-03-10 1868 1870 6 3 15 10
Louisiana Henry Clay Warmoth Republican 232 1868-06-27 1872-12-09 1868 1872 6 12 27 9
North Carolina William Woods Holden Republican 142 1868-07-01 1871-03-22 1868 1871 7 3 1 22
Arkansas Powell Foulk Clayton Republican 141 1868-07-02 1871-03-17 1868 1871 7 3 2 17
Florida Harrison Reed Republican 235 1868-07-04 1873-01-07 1868 1873 7 1 4 7
Georgia Rufus Brown Bullock Republican 173 1868-07-04 1871-10-30 1868 1871 7 10 4 30
South Carolina Robert Kingston Scott Republican 231 1868-07-06 1872-12-07 1868 1872 7 12 6 7
Alabama William Hugh Smith Republican 124 1868-07-14 1870-11-26 1868 1870 7 11 14 26
Kansas Nehemiah Green Republican 10 1868-11-04 1869-01-11 1868 1869 11 1 4 11
New York John Thompson Hoffman Democratic 209 1868-12-31 1872-12-31 1868 1872 12 12 31 31
Michigan Henry Porter Baldwin Republican 208 1869-01-06 1873-01-01 1869 1873 1 1 6 1
Massachusetts William Claflin Republican 156 1869-01-07 1872-01-04 1869 1872 1 1 7 4
Illinois John McAuley Palmer Republican 209 1869-01-11 1873-01-13 1869 1873 1 1 11 13
Kansas James Madison Harvey Republican 209 1869-01-11 1873-01-13 1869 1873 1 1 11 13
Missouri Joseph Washington McClurg Republican 103 1869-01-12 1871-01-04 1869 1871 1 1 12 4
Maryland Oden Bowie Democratic 156 1869-01-13 1872-01-10 1869 1872 1 1 13 10
New Jersey Theodore Fitz Randolph Democratic 156 1869-01-19 1872-01-16 1869 1872 1 1 19 16
Tennessee Dewitt Clinton Senter Republican 137 1869-02-25 1871-10-10 1869 1871 2 10 25 10
West Virginia Daniel Duane Tompkins Farnsworth Republican 1 1869-02-26 1869-03-04 1869 1869 2 3 26 4
West Virginia William Erskine Stevenson Republican 104 1869-03-04 1871-03-04 1869 1871 3 3 4 4
Connecticut Marshall Jewell Republican 52 1869-05-05 1870-05-04 1869 1870 5 5 5 4
Rhode Island Seth Padelford Republican 209 1869-05-25 1873-05-27 1869 1873 5 5 25 27
New Hampshire Onslow Stearns Republican 105 1869-06-03 1871-06-08 1869 1871 6 6 3 8
Virginia Gilbert Carlton Walker Republican 223 1869-09-21 1874-01-01 1869 1874 9 1 21 1
Vermont Peter Thacher Washburn Republican 16 1869-10-15 1870-02-07 1869 1870 10 2 15 7
Texas Edmund Jackson Davis Republican 210 1870-01-08 1874-01-15 1870 1874 1 1 8 15
Minnesota Horace Austin Republican 208 1870-01-09 1874-01-07 1870 1874 1 1 9 7
Vermont George Whitman Hendee Republican 34 1870-02-07 1870-10-06 1870 1870 2 10 7 6
Mississippi James Lusk Alcorn Republican 90 1870-03-10 1871-11-30 1870 1871 3 11 10 30
Connecticut James Edward English Democratic 54 1870-05-04 1871-05-16 1870 1871 5 5 4 16
Oregon La Fayette Grover Democratic 333 1870-09-14 1877-02-01 1870 1877 9 2 14 1
Vermont John Wolcott Stewart Republican 104 1870-10-06 1872-10-03 1870 1872 10 10 6 3
Alabama Robert Burns Lindsay Democratic 104 1870-11-26 1872-11-25 1870 1872 11 11 26 25
Nevada Lewis Rice Bradley Democratic 418 1871-01-02 1879-01-06 1871 1879 1 1 2 6
Maine Sidney Perham Republican 157 1871-01-04 1874-01-07 1871 1874 1 1 4 7
Missouri Benjamin Gratz Brown Liberal Republican 104 1871-01-04 1873-01-03 1871 1873 1 1 4 3
Delaware James Ponder Democratic 209 1871-01-17 1875-01-19 1871 1875 1 1 17 19
Kentucky Preston Hopkins Leslie Democratic 239 1871-02-03 1875-08-31 1871 1875 2 8 3 31
West Virginia John Jeremiah Jacob Democratic 313 1871-03-04 1877-03-04 1871 1877 3 3 4 4
Arkansas Ozra Amander Hadley Republican 94 1871-03-17 1873-01-06 1871 1873 3 1 17 6
North Carolina Tod Robinson Caldwell Republican 172 1871-03-22 1874-07-11 1871 1874 3 7 22 11
Connecticut Marshall Jewell Republican 103 1871-05-16 1873-05-07 1871 1873 5 5 16 7
Nebraska William Hartford James Republican 84 1871-06-02 1873-01-13 1871 1873 6 1 2 13
New Hampshire James Adams Weston Democratic 52 1871-06-08 1872-06-06 1871 1872 6 6 8 6
Tennessee John Calvin Brown Democratic 171 1871-10-10 1875-01-18 1871 1875 10 1 10 18
Georgia Benjamin F. Conley Republican 11 1871-10-30 1872-01-12 1871 1872 10 1 30 12
Mississippi Ridgley Ceylon Powers Republican 109 1871-11-30 1874-01-04 1871 1874 11 1 30 4
California Newton Booth Republican 168 1871-12-08 1875-02-27 1871 1875 12 2 8 27
Wisconsin Cadwallader Colden Washburn Republican 105 1872-01-01 1874-01-05 1872 1874 1 1 1 5
Massachusetts William Barrett Washburn Republican 121 1872-01-04 1874-04-29 1872 1874 1 4 4 29
Ohio Edward Follansbee Noyes Republican 105 1872-01-08 1874-01-12 1872 1874 1 1 8 12
Maryland William Pinkney Whyte Democratic 112 1872-01-10 1874-03-04 1872 1874 1 3 10 4
Iowa Cyrus Clay Carpenter Republican 209 1872-01-11 1876-01-13 1872 1876 1 1 11 13
Georgia James Milton Smith Democratic 564 1872-01-12 1882-11-04 1872 1882 1 11 12 4
New Jersey Joel Parker Democratic 157 1872-01-16 1875-01-19 1872 1875 1 1 16 19
New Hampshire Ezekiel Albert Straw Republican 104 1872-06-06 1874-06-03 1872 1874 6 6 6 3
Vermont Julius Converse Republican 105 1872-10-03 1874-10-08 1872 1874 10 10 3 8
Alabama David Peter Lewis Republican 104 1872-11-25 1874-11-24 1872 1874 11 11 25 24
South Carolina Franklin Israel Moses Jr.  Republican 103 1872-12-07 1874-12-01 1872 1874 12 12 7 1
Louisiana Pickney Benton Stewart Pinchback Republican 5 1872-12-09 1873-01-13 1872 1873 12 1 9 13
New York John Adams Dix Republican 104 1872-12-31 1874-12-31 1872 1874 12 12 31 31
Michigan John Judson Bagley Republican 209 1873-01-01 1877-01-03 1873 1877 1 1 1 3
Missouri Silas Woodson Democratic 106 1873-01-03 1875-01-12 1873 1875 1 1 3 12
Arkansas Elisha Baxter Republican 96 1873-01-06 1874-11-12 1873 1874 1 11 6 12
Florida Ossian Bingley Hart Republican 62 1873-01-07 1874-03-18 1873 1874 1 3 7 18
Illinois Richard James Oglesby Republican 1 1873-01-13 1873-01-23 1873 1873 1 1 13 23
Indiana Thomas Andrews Hendricks Democratic 208 1873-01-13 1877-01-08 1873 1877 1 1 13 8
Kansas Thomas Andrew Osborn Republican 208 1873-01-13 1877-01-08 1873 1877 1 1 13 8
Louisiana John McEnery Democratic 18 1873-01-13 1873-05-22 1873 1873 1 5 13 22
Louisiana William Pitt Kellogg Republican 208 1873-01-13 1877-01-08 1873 1877 1 1 13 8
Nebraska Robert Wilkinson Furnas Republican 104 1873-01-13 1875-01-11 1873 1875 1 1 13 11
Pennsylvania John Frederick Hartranft Republican 313 1873-01-21 1879-01-21 1873 1879 1 1 21 21
Illinois John Lourie Beveridge Republican 207 1873-01-23 1877-01-08 1873 1877 1 1 23 8
Connecticut Charles Roberts Ingersoll Democratic 191 1873-05-07 1877-01-03 1873 1877 5 1 7 3
Rhode Island Henry Howard Republican 104 1873-05-27 1875-05-25 1873 1875 5 5 27 25
Virginia James Lawson Kemper Democratic 209 1874-01-01 1878-01-01 1874 1878 1 1 1 1
Mississippi Adelbert C. Ames Republican 116 1874-01-04 1876-03-29 1874 1876 1 3 4 29
Wisconsin William Robert Taylor Democratic 104 1874-01-05 1876-01-03 1874 1876 1 1 5 3
Maine Nelson Dingley Jr.  Republican 104 1874-01-07 1876-01-05 1874 1876 1 1 7 5
Minnesota Cushman Kellogg Davis Republican 104 1874-01-07 1876-01-07 1874 1876 1 1 7 7
Ohio William Allen Democratic 104 1874-01-12 1876-01-10 1874 1876 1 1 12 10
Texas Richard Coke Democratic 150 1874-01-15 1876-12-01 1874 1876 1 12 15 1
Maryland James Black Groome Democratic 97 1874-03-04 1876-01-12 1874 1876 3 1 4 12
Florida Marcellus Lovejoy Stearns Republican 146 1874-03-18 1877-01-02 1874 1877 3 1 18 2
Massachusetts Thomas Talbot Republican 36 1874-04-29 1875-01-07 1874 1875 4 1 29 7
New Hampshire James Adams Weston Democratic 53 1874-06-03 1875-06-10 1874 1875 6 6 3 10
North Carolina Curtis Hooks Brogden Democratic 129 1874-07-11 1877-01-01 1874 1877 7 1 11 1
Vermont Asahel Peck Republican 104 1874-10-08 1876-10-05 1874 1876 10 10 8 5
Arkansas Augustus Hill Garland Democratic 113 1874-11-12 1877-01-11 1874 1877 11 1 12 11
Alabama George Smith Houston Democratic 209 1874-11-24 1878-11-27 1874 1878 11 11 24 27
South Carolina Daniel Henry Chamberlain Republican 106 1874-12-01 1876-12-14 1874 1876 12 12 1 14
New York Samuel Jones Tilden Democratic 104 1874-12-31 1876-12-31 1874 1876 12 12 31 31
Massachusetts William Gaston Democratic 52 1875-01-07 1876-01-06 1875 1876 1 1 7 6
Nebraska Silas Garber Republican 208 1875-01-11 1879-01-09 1875 1879 1 1 11 9
Missouri Charles Henry Hardin Democratic 104 1875-01-12 1877-01-08 1875 1877 1 1 12 8
Tennessee James Davis Porter Democratic 213 1875-01-18 1879-02-16 1875 1879 1 2 18 16
Delaware John Price Cochran Democratic 209 1875-01-19 1879-01-21 1875 1879 1 1 19 21
New Jersey Joseph Dorsett Bedle Sr.  Democratic 156 1875-01-19 1878-01-15 1875 1878 1 1 19 15
California Jose Antonio Romualdo Pacheco Republican 41 1875-02-27 1875-12-09 1875 1875 2 12 27 9
Rhode Island Henry Lippitt Republican 105 1875-05-25 1877-05-29 1875 1877 5 5 25 29
New Hampshire Person Colby Cheney Republican 104 1875-06-10 1877-06-07 1875 1877 6 6 10 7
Kentucky James Bennett McCreary Democratic 209 1875-08-31 1879-09-02 1875 1879 8 9 31 2
California William Irwin Democratic 213 1875-12-09 1880-01-08 1875 1880 12 1 9 8
Wisconsin Harrison Ludington Republican 105 1876-01-03 1878-01-07 1876 1878 1 1 3 7
Maine Seldon Connor Republican 157 1876-01-05 1879-01-08 1876 1879 1 1 5 8
Massachusetts Alexander Hamilton Rice Republican 156 1876-01-06 1879-01-02 1876 1879 1 1 6 2
Minnesota John Sargent Pillsbury Republican 314 1876-01-07 1882-01-10 1876 1882 1 1 7 10
Ohio Rutherford Birchard Hayes Republican 60 1876-01-10 1877-03-02 1876 1877 1 3 10 2
Maryland John Lee Carroll Democratic 209 1876-01-12 1880-01-14 1876 1880 1 1 12 14
Iowa Samuel Jordan Kirkwood Republican 55 1876-01-13 1877-02-01 1876 1877 1 2 13 1
Mississippi John Marshall Stone Democratic 305 1876-03-29 1882-01-29 1876 1882 3 1 29 29
Vermont Horace Fairbanks Republican 104 1876-10-05 1878-10-03 1876 1878 10 10 5 3
Colorado John Long Routt Republican 115 1876-11-03 1879-01-14 1876 1879 11 1 3 14
Texas Richard Bennett Hubbard Jr.  Democratic 112 1876-12-01 1879-01-21 1876 1879 12 1 1 21
South Carolina Wade Hampton III Democratic 145 1876-12-14 1879-09-26 1876 1879 12 9 14 26
New York Lucius Robinson Democratic 156 1876-12-31 1879-12-31 1876 1879 12 12 31 31
North Carolina Zebulon Baird Vance Democratic 109 1877-01-01 1879-02-05 1877 1879 1 2 1 5
Florida George Franklin Drew Democratic 209 1877-01-02 1881-01-04 1877 1881 1 1 2 4
Connecticut Richard Dudley Hubbard Democratic 105 1877-01-03 1879-01-09 1877 1879 1 1 3 9
Michigan Charles Miller Croswell Republican 208 1877-01-03 1881-01-01 1877 1881 1 1 3 1
Illinois Shelby Moore Cullom Republican 317 1877-01-08 1883-02-05 1877 1883 1 2 8 5
Indiana James Douglas Williams Democratic 202 1877-01-08 1880-11-20 1877 1880 1 11 8 20
Kansas George Tobey Anthony Republican 105 1877-01-08 1879-01-13 1877 1879 1 1 8 13
Louisiana Stephen Bennett Packard Sr.  Republican 15 1877-01-08 1877-04-25 1877 1877 1 4 8 25
Missouri John Smith Phelps Democratic 209 1877-01-08 1881-01-10 1877 1881 1 1 8 10
Arkansas William Read Miller Democratic 209 1877-01-11 1881-01-13 1877 1881 1 1 11 13
Iowa Joshua Gaskill Newbold Republican 50 1877-02-01 1878-01-17 1877 1878 2 1 1 17
Oregon Stephen Fowler Chadwick Democratic 84 1877-02-01 1878-09-11 1877 1878 2 9 1 11
Ohio Thomas Lowry Young Republican 45 1877-03-02 1878-01-14 1877 1878 3 1 2 14
West Virginia Henry Mason Matthews Democratic 209 1877-03-04 1881-03-04 1877 1881 3 3 4 4
Louisiana Francis Redding Tillou Nicholls Democratic 142 1877-04-25 1880-01-14 1877 1880 4 1 25 14
Rhode Island Charles Collins Van Zandt Republican 156 1877-05-29 1880-05-25 1877 1880 5 5 29 25
New Hampshire Benjamin Franklin Prescott Republican 104 1877-06-07 1879-06-05 1877 1879 6 6 7 5
Virginia Frederick William Mackey Holliday Democratic 209 1878-01-01 1882-01-01 1878 1882 1 1 1 1
Wisconsin William E. Smith Republican 208 1878-01-07 1882-01-02 1878 1882 1 1 7 2
Ohio Richard M. Bishop Democratic 104 1878-01-14 1880-01-12 1878 1880 1 1 14 12
New Jersey George Brinton McClellan Democratic 157 1878-01-15 1881-01-18 1878 1881 1 1 15 18
Iowa John Henry Gear Republican 208 1878-01-17 1882-01-12 1878 1882 1 1 17 12
Oregon William Wallace Thayer Democratic 209 1878-09-11 1882-09-13 1878 1882 9 9 11 13
Vermont Redfield Proctor Republican 105 1878-10-03 1880-10-07 1878 1880 10 10 3 7
Alabama Rufus Willis Cobb Democratic 209 1878-11-27 1882-12-01 1878 1882 11 12 27 1
Massachusetts Thomas Talbot Republican 53 1879-01-02 1880-01-08 1879 1880 1 1 2 8
Nevada John Henry Kinkead Republican 208 1879-01-06 1883-01-01 1879 1883 1 1 6 1
Maine Alonzo Garcelon Democratic 53 1879-01-08 1880-01-17 1879 1880 1 1 8 17
Connecticut Charles Bartlett Andrews Republican 104 1879-01-09 1881-01-05 1879 1881 1 1 9 5
Nebraska Albinus Roberts Nance Republican 208 1879-01-09 1883-01-04 1879 1883 1 1 9 4
Kansas John Pierce St. John Republican 208 1879-01-13 1883-01-08 1879 1883 1 1 13 8
Colorado Frederick Walker Pitkin Republican 208 1879-01-14 1883-01-09 1879 1883 1 1 14 9
Delaware John Wood Hall Democratic 208 1879-01-21 1883-01-16 1879 1883 1 1 21 16
Pennsylvania Henry Martyn Hoyt Sr.  Republican 208 1879-01-21 1883-01-16 1879 1883 1 1 21 16
Texas Oran Milo Roberts Democratic 208 1879-01-21 1883-01-16 1879 1883 1 1 21 16
North Carolina Thomas Jordan Jarvis Democratic 311 1879-02-05 1885-01-21 1879 1885 2 1 5 21
Tennessee Albert Smith Marks Democratic 100 1879-02-16 1881-01-17 1879 1881 2 1 16 17
New Hampshire Nathaniel Head Republican 104 1879-06-05 1881-06-02 1879 1881 6 6 5 2
Kentucky Luke Pryor Blackburn Democratic 209 1879-09-02 1883-09-05 1879 1883 9 9 2 5
South Carolina William Dunlap Simpson Democratic 49 1879-09-26 1880-09-01 1879 1880 9 9 26 1
New York Alonzo Barton Cornell Republican 157 1879-12-31 1882-12-31 1879 1882 12 12 31 31
California George Clement Perkins Republican 157 1880-01-08 1883-01-10 1880 1883 1 1 8 10
Massachusetts John Davis Long Republican 156 1880-01-08 1883-01-04 1880 1883 1 1 8 4
Ohio Charles William Foster Jr.  Republican 209 1880-01-12 1884-01-14 1880 1884 1 1 12 14
Louisiana Louis Alfred Wiltz Democratic 92 1880-01-14 1881-10-16 1880 1881 1 10 14 16
Maryland William Thomas Hamilton Democratic 208 1880-01-14 1884-01-09 1880 1884 1 1 14 9
Maine Daniel Franklin Davis Republican 52 1880-01-17 1881-01-13 1880 1881 1 1 17 13
Rhode Island Alfred Henry Littlefield Republican 157 1880-05-25 1883-05-29 1880 1883 5 5 25 29
South Carolina Thomas Bothwell Jeter Democratic 13 1880-09-01 1880-11-30 1880 1880 9 11 1 30
Vermont Roswell Farnham Republican 104 1880-10-07 1882-10-05 1880 1882 10 10 7 5
Indiana Isaac Pusey Gray Democratic 7 1880-11-20 1881-01-10 1880 1881 11 1 20 10
South Carolina Johnson Hagood Democratic 104 1880-11-30 1882-12-01 1880 1882 11 12 30 1
Michigan David Howell Jerome Republican 104 1881-01-01 1883-01-01 1881 1883 1 1 1 1
Florida William Dunnington Bloxham Democratic 209 1881-01-04 1885-01-07 1881 1885 1 1 4 7
Connecticut Hobart Baldwin Bigelow Republican 104 1881-01-05 1883-01-03 1881 1883 1 1 5 3
Indiana Albert Gallatin Porter Republican 209 1881-01-10 1885-01-12 1881 1885 1 1 10 12
Missouri Thomas Theodore Crittenden Democratic 209 1881-01-10 1885-01-12 1881 1885 1 1 10 12
Arkansas Thomas James Churchill Democratic 104 1881-01-13 1883-01-13 1881 1883 1 1 13 13
Maine Harris Merrill Plaisted Greenback 103 1881-01-13 1883-01-03 1881 1883 1 1 13 3
Tennessee Alvin Hawkins Republican 104 1881-01-17 1883-01-15 1881 1883 1 1 17 15
New Jersey George Craig Ludlow Democratic 156 1881-01-18 1884-01-15 1881 1884 1 1 18 15
West Virginia Jacob Beeson Jackson Democratic 209 1881-03-04 1885-03-04 1881 1885 3 3 4 4
New Hampshire Charles Henry Bell Republican 105 1881-06-02 1883-06-07 1881 1883 6 6 2 7
Louisiana Samuel Douglas McEnery Democratic 344 1881-10-16 1888-05-21 1881 1888 10 5 16 21
Virginia William Evelyn Cameron Re-Adjuster 209 1882-01-01 1886-01-01 1882 1886 1 1 1 1
Wisconsin Jeremiah McLain Rusk Republican 366 1882-01-02 1889-01-07 1882 1889 1 1 2 7
Minnesota Lucius Frederick Hubbard Republican 261 1882-01-10 1887-01-09 1882 1887 1 1 10 9
Iowa Buren Robinson Sherman Republican 209 1882-01-12 1886-01-14 1882 1886 1 1 12 14
Mississippi Robert Lowry Democratic 415 1882-01-29 1890-01-13 1882 1890 1 1 29 13
Oregon Zenas Ferry Moody Republican 226 1882-09-13 1887-01-12 1882 1887 9 1 13 12
Vermont John Lester Barstow Republican 104 1882-10-05 1884-10-02 1882 1884 10 10 5 2
Georgia Alfred Holt Colquitt Democratic 17 1882-11-04 1883-03-04 1882 1883 11 3 4 4
Alabama Edward Asbury O’Neal Democratic 209 1882-12-01 1886-12-01 1882 1886 12 12 1 1
South Carolina Hugh Smith Thompson Democratic 188 1882-12-01 1886-07-10 1882 1886 12 7 1 10
New York Stephen Grover Cleveland Democratic 105 1882-12-31 1885-01-06 1882 1885 12 1 31 6
Michigan Josiah Williams Begole Democratic 104 1883-01-01 1885-01-01 1883 1885 1 1 1 1
Nevada Jewett William Adams Democratic 209 1883-01-01 1887-01-03 1883 1887 1 1 1 3
Connecticut Thomas MacDonald Waller Democratic 105 1883-01-03 1885-01-08 1883 1885 1 1 3 8
Maine Frederick Robie Republican 209 1883-01-03 1887-01-05 1883 1887 1 1 3 5
Massachusetts Benjamin Franklin Butler Democratic 52 1883-01-04 1884-01-03 1883 1884 1 1 4 3
Nebraska James William Dawes Republican 209 1883-01-04 1887-01-06 1883 1887 1 1 4 6
Kansas George Washington Glick Democratic 105 1883-01-08 1885-01-12 1883 1885 1 1 8 12
Colorado James Benton Grant Democratic 105 1883-01-09 1885-01-13 1883 1885 1 1 9 13
California George Stoneman Jr.  Democratic 208 1883-01-10 1887-01-08 1883 1887 1 1 10 8
Arkansas James Henderson Berry Democratic 105 1883-01-13 1885-01-15 1883 1885 1 1 13 15
Tennessee William Brimage Bate Democratic 209 1883-01-15 1887-01-17 1883 1887 1 1 15 17
Delaware Charles Clark Stockley Democratic 209 1883-01-16 1887-01-18 1883 1887 1 1 16 18
Pennsylvania Robert Emory Pattison Democratic 209 1883-01-16 1887-01-18 1883 1887 1 1 16 18
Texas John Ireland Democratic 209 1883-01-16 1887-01-18 1883 1887 1 1 16 18
Illinois John Marshall Hamilton Republican 104 1883-02-05 1885-01-30 1883 1885 2 1 5 30
Georgia Alexander Hamilton Stephens Democratic 10 1883-03-04 1883-05-10 1883 1883 3 5 4 10
Georgia James Stoddard Boynton Democratic 183 1883-05-10 1886-11-09 1883 1886 5 11 10 9
Rhode Island Augustus Osborn Bourn Republican 104 1883-05-29 1885-05-26 1883 1885 5 5 29 26
New Hampshire Samuel Whitney Hale Republican 104 1883-06-07 1885-06-04 1883 1885 6 6 7 4
Kentucky James Proctor Knott Democratic 208 1883-09-05 1887-08-30 1883 1887 9 8 5 30
Massachusetts George Dexter Robinson Republican 157 1884-01-03 1887-01-06 1884 1887 1 1 3 6
Maryland Robert Milligan McLane Democratic 63 1884-01-09 1885-03-27 1884 1885 1 3 9 27
Ohio George Hoadly Democratic 104 1884-01-14 1886-01-11 1884 1886 1 1 14 11
New Jersey Leon Abbett Democratic 157 1884-01-15 1887-01-18 1884 1887 1 1 15 18
Vermont Samuel Everett Pingree Republican 105 1884-10-02 1886-10-07 1884 1886 10 10 2 7
Michigan Russel Alexander Alger Republican 104 1885-01-01 1887-01-01 1885 1887 1 1 1 1
New York David Bennett Hill Democratic 364 1885-01-06 1891-12-31 1885 1891 1 12 6 31
Florida Edward Aylesworth Perry Democratic 209 1885-01-07 1889-01-08 1885 1889 1 1 7 8
Connecticut Henry Baldwin Harrison Republican 104 1885-01-08 1887-01-07 1885 1887 1 1 8 7
Indiana Isaac Pusey Gray Democratic 209 1885-01-12 1889-01-14 1885 1889 1 1 12 14
Kansas John Alexander Martin Republican 209 1885-01-12 1889-01-14 1885 1889 1 1 12 14
Missouri John Sappington Marmaduke Democratic 154 1885-01-12 1887-12-28 1885 1887 1 12 12 28
Colorado Benjamin Harrison Eaton Republican 104 1885-01-13 1887-01-11 1885 1887 1 1 13 11
Arkansas Simon Pollard Hughes Jr.  Democratic 209 1885-01-15 1889-01-17 1885 1889 1 1 15 17
North Carolina Alfred Moore Scales Democratic 208 1885-01-21 1889-01-17 1885 1889 1 1 21 17
Illinois Richard James Oglesby Republican 206 1885-01-30 1889-01-14 1885 1889 1 1 30 14
West Virginia Emanuel Willis Wilson Democratic 257 1885-03-04 1890-02-06 1885 1890 3 2 4 6
Maryland Henry Lloyd Democratic 146 1885-03-27 1888-01-11 1885 1888 3 1 27 11
Rhode Island George Peabody Wetmore Republican 105 1885-05-26 1887-05-29 1885 1887 5 5 26 29
New Hampshire Moody Currier Republican 104 1885-06-04 1887-06-02 1885 1887 6 6 4 2
Virginia Fitzhugh Lee Democratic 209 1886-01-01 1890-01-01 1886 1890 1 1 1 1
Ohio Joseph Benson Foraker Republican 209 1886-01-11 1890-01-13 1886 1890 1 1 11 13
Iowa William Larrabee Republican 215 1886-01-14 1890-02-27 1886 1890 1 2 14 27
South Carolina John Calhoun Sheppard Democratic 20 1886-07-10 1886-11-30 1886 1886 7 11 10 30
Vermont Ebenezer Jolls Ormsbee Republican 104 1886-10-07 1888-10-04 1886 1888 10 10 7 4
Georgia Henry Dickerson McDaniel Democratic 209 1886-11-09 1890-11-08 1886 1890 11 11 9 8
South Carolina John Peter Richardson III Democratic 209 1886-11-30 1890-12-04 1886 1890 11 12 30 4
Alabama Thomas Seay Democratic 209 1886-12-01 1890-12-01 1886 1890 12 12 1 1
Michigan Cyrus Gray Luce Republican 209 1887-01-01 1891-01-01 1887 1891 1 1 1 1
Nevada Charles Clark Stevenson Republican 194 1887-01-03 1890-09-21 1887 1890 1 9 3 21
Maine Joseph Robinson Bodwell Republican 49 1887-01-05 1887-12-15 1887 1887 1 12 5 15
Massachusetts Oliver Ames Republican 157 1887-01-06 1890-01-07 1887 1890 1 1 6 7
Nebraska John Milton Thayer Republican 266 1887-01-06 1892-02-08 1887 1892 1 2 6 8
Connecticut Phineas Chapman Lounsbury Republican 105 1887-01-07 1889-01-10 1887 1889 1 1 7 10
California Washington Montgomery Bartlett Democratic 35 1887-01-08 1887-09-12 1887 1887 1 9 8 12
Minnesota Andrew Ryan McGill Republican 104 1887-01-09 1889-01-09 1887 1889 1 1 9 9
Colorado Alva Adams Democratic 104 1887-01-11 1889-01-08 1887 1889 1 1 11 8
Oregon Sylvester Pennoyer Democratic 418 1887-01-12 1895-01-14 1887 1895 1 1 12 14
Tennessee Robert Love Taylor Democratic 209 1887-01-17 1891-01-19 1887 1891 1 1 17 19
Delaware Benjamin Thomas Biggs Democratic 209 1887-01-18 1891-01-20 1887 1891 1 1 18 20
New Jersey Robert Stockton Green Democratic 157 1887-01-18 1890-01-21 1887 1890 1 1 18 21
Pennsylvania James Addams Beaver Republican 209 1887-01-18 1891-01-20 1887 1891 1 1 18 20
Texas Lawrence Sullivan Ross Democratic 209 1887-01-18 1891-01-20 1887 1891 1 1 18 20
Rhode Island John William Davis Democratic 52 1887-05-29 1888-05-29 1887 1888 5 5 29 29
New Hampshire Charles Henry Sawyer Republican 105 1887-06-02 1889-06-06 1887 1889 6 6 2 6
Kentucky Simon Bolivar Buckner Democratic 209 1887-08-30 1891-09-02 1887 1891 8 9 30 2
California Robert Whitney Waterman Republican 173 1887-09-12 1891-01-08 1887 1891 9 1 12 8
Maine Sebastian Streeter Marble Republican 55 1887-12-15 1889-01-02 1887 1889 12 1 15 2
Missouri Albert Pickett Morehouse Democratic 55 1887-12-28 1889-01-14 1887 1889 12 1 28 14
Maryland Elihu Emory Jackson Democratic 209 1888-01-11 1892-01-13 1888 1892 1 1 11 13
Louisiana Francing Redding Tillou Nicholls Democratic 208 1888-05-21 1892-05-16 1888 1892 5 5 21 16
Rhode Island Royal Chapin Taft Sr.  Republican 52 1888-05-29 1889-05-28 1888 1889 5 5 29 28
Vermont William Paul Dillingham Republican 104 1888-10-04 1890-10-02 1888 1890 10 10 4 2
Maine Edwin Chick Burleigh Republican 209 1889-01-02 1893-01-04 1889 1893 1 1 2 4
Wisconsin William Dempster Hoard Republican 104 1889-01-07 1891-01-05 1889 1891 1 1 7 5
Colorado Job Adams Cooper Republican 105 1889-01-08 1891-01-13 1889 1891 1 1 8 13
Florida Francis Philip Fleming Democratic 208 1889-01-08 1893-01-03 1889 1893 1 1 8 3
Minnesota William Rush Merriam Republican 208 1889-01-09 1893-01-04 1889 1893 1 1 9 4
Connecticut Morgan Gardner Bulkeley Republican 208 1889-01-10 1893-01-04 1889 1893 1 1 10 4
Illinois Joseph Wilson Fifer Republican 208 1889-01-14 1893-01-10 1889 1893 1 1 14 10
Indiana Alvin Peterson Hovey Republican 149 1889-01-14 1891-11-23 1889 1891 1 11 14 23
Kansas Lyman Underwood Humphrey Republican 208 1889-01-14 1893-01-08 1889 1893 1 1 14 8
Missouri David Rowland Francis Democratic 208 1889-01-14 1893-01-09 1889 1893 1 1 14 9
Arkansas James Philip Eagle Democratic 208 1889-01-17 1893-01-14 1889 1893 1 1 17 14
North Carolina Daniel Gould Fowle Democratic 116 1889-01-17 1891-04-07 1889 1891 1 4 17 7
South Dakota Arthur Calvin Mellette Republican 199 1889-03-09 1893-01-03 1889 1893 3 1 9 3
Rhode Island Herbert Warren Ladd Republican 52 1889-05-28 1890-05-27 1889 1890 5 5 28 27
New Hampshire David Harvey Goodell Republican 83 1889-06-06 1891-01-08 1889 1891 6 1 6 8
Montana Joseph Kemp Toole Democratic 164 1889-11-08 1893-01-01 1889 1893 11 1 8 1
Washington Elisha Peyre Ferry Republican 165 1889-11-11 1893-01-11 1889 1893 11 1 11 11
North Dakota John Miller Republican 59 1889-11-20 1891-01-07 1889 1891 11 1 20 7
Virginia Philip Watkins McKinney Democratic 209 1890-01-01 1894-01-01 1890 1894 1 1 1 1
Massachusetts John Quincy Adams Brackett Republican 52 1890-01-07 1891-01-08 1890 1891 1 1 7 8
Mississippi John Marshall Stone Democratic 314 1890-01-13 1896-01-20 1890 1896 1 1 13 20
Ohio James Edwin Campbell Democratic 104 1890-01-13 1892-01-11 1890 1892 1 1 13 11
New Jersey Leon Abbett Democratic 156 1890-01-21 1893-01-17 1890 1893 1 1 21 17
West Virginia Aretas Brooks Fleming Democratic 160 1890-02-06 1893-03-04 1890 1893 2 3 6 4
Iowa Horace Boies Democratic 202 1890-02-27 1894-01-11 1890 1894 2 1 27 11
Rhode Island John William Davis Democratic 52 1890-05-27 1891-05-26 1890 1891 5 5 27 26
Nevada Francis Jardine Bell Republican 15 1890-09-21 1891-01-05 1890 1891 9 1 21 5
Idaho George Laird Shoup Republican 11 1890-10-01 1890-12-18 1890 1890 10 12 1 18
Vermont Carroll Smalley Page Republican 105 1890-10-02 1892-10-06 1890 1892 10 10 2 6
Wyoming Francis Emroy Warren Republican 6 1890-10-11 1890-11-24 1890 1890 10 11 11 24
Georgia John Brown Gordon Democratic 207 1890-11-08 1894-10-27 1890 1894 11 10 8 27
Wyoming Amos Walker Barber Republican 110 1890-11-24 1893-01-02 1890 1893 11 1 24 2
Alabama Thomas Goode Jones Democratic 209 1890-12-01 1894-12-01 1890 1894 12 12 1 1
South Carolina Benjamin Ryan Tillman Democratic 209 1890-12-04 1894-12-04 1890 1894 12 12 4 4
Idaho Norman Bushnell Willey Republican 107 1890-12-18 1893-01-02 1890 1893 12 1 18 2
Michigan Edwin Baruch Winans Democratic 104 1891-01-01 1893-01-01 1891 1893 1 1 1 1
Nevada Roswell Keyes Colcord Republican 209 1891-01-05 1895-01-07 1891 1895 1 1 5 7
Wisconsin George Wilbur Peck Democratic 209 1891-01-05 1895-01-07 1891 1895 1 1 5 7
North Dakota Andrew Horace Burke Democratic 104 1891-01-07 1893-01-03 1891 1893 1 1 7 3
California Henry Harrison Markham Republican 209 1891-01-08 1895-01-11 1891 1895 1 1 8 11
Massachusetts William Eustis Russell Democratic 156 1891-01-08 1894-01-04 1891 1894 1 1 8 4
New Hampshire Hiram Americus Tuttle Republican 104 1891-01-08 1893-01-05 1891 1893 1 1 8 5
Colorado John Long Routt Republican 104 1891-01-13 1893-01-10 1891 1893 1 1 13 10
Tennessee John Price Buchanan Democratic 104 1891-01-19 1893-01-16 1891 1893 1 1 19 16
Delaware Robert John Reynolds Democratic 208 1891-01-20 1895-01-15 1891 1895 1 1 20 15
Pennsylvania Robert Emory Pattison Democratic 208 1891-01-20 1895-01-15 1891 1895 1 1 20 15
Texas Jim Stephen Hogg Democratic 208 1891-01-20 1895-01-15 1891 1895 1 1 20 15
North Carolina Thomas Michael Holt Democratic 93 1891-04-07 1893-01-18 1891 1893 4 1 7 18
Rhode Island Herbert Warren Ladd Republican 52 1891-05-26 1892-05-21 1891 1892 5 5 26 21
Kentucky John Young Brown Democratic 223 1891-09-02 1895-12-10 1891 1895 9 12 2 10
Indiana Ira Joy Chase Republican 59 1891-11-23 1893-01-09 1891 1893 11 1 23 9
New York Roswell Pettibone Flower Democratic 157 1891-12-31 1894-12-31 1891 1894 12 12 31 31
Ohio William McKinley Republican 209 1892-01-11 1896-01-13 1892 1896 1 1 11 13
Maryland Frank Brown Democratic 208 1892-01-13 1896-01-08 1892 1896 1 1 13 8
Nebraska James Edward Boyd Democratic 49 1892-02-08 1893-01-13 1892 1893 2 1 8 13
Louisiana Murphy James Foster Democratic 418 1892-05-16 1900-05-21 1892 1900 5 5 16 21
Rhode Island Daniel Russell Brown Republican 158 1892-05-21 1895-05-29 1892 1895 5 5 21 29
Vermont Levi Knight Fuller Republican 104 1892-10-06 1894-10-04 1892 1894 10 10 6 4
Michigan John Treadway Rich Republican 209 1893-01-01 1897-01-01 1893 1897 1 1 1 1
Montana John Ezra Rickards Republican 209 1893-01-01 1897-01-03 1893 1897 1 1 1 3
Idaho William John McConnell Republican 209 1893-01-02 1897-01-04 1893 1897 1 1 2 4
Wyoming John Eugene Osborne Democratic 105 1893-01-02 1895-01-07 1893 1895 1 1 2 7
Florida Henry Laurens Mitchell Democratic 209 1893-01-03 1897-01-05 1893 1897 1 1 3 5
North Dakota Eli C. D. Shortridge Republican 105 1893-01-03 1895-01-10 1893 1895 1 1 3 10
South Dakota Charles Henry Sheldon Republican 208 1893-01-03 1897-01-01 1893 1897 1 1 3 1
Connecticut Luzon Buritt Morris Democratic 105 1893-01-04 1895-01-09 1893 1895 1 1 4 9
Maine Henry Bradstreet Cleaves Republican 208 1893-01-04 1897-01-02 1893 1897 1 1 4 2
Minnesota Knute Nelson Republican 108 1893-01-04 1895-01-31 1893 1895 1 1 4 31
New Hampshire John Butler Smith Republican 104 1893-01-05 1895-01-03 1893 1895 1 1 5 3
Kansas Lorenzo Dow Lewelling Populist 105 1893-01-08 1895-01-14 1893 1895 1 1 8 14
Indiana Claude Matthews Democratic 209 1893-01-09 1897-01-11 1893 1897 1 1 9 11
Missouri William Joel Stone Democratic 209 1893-01-09 1897-01-11 1893 1897 1 1 9 11
Colorado Davis Hanson Waite Populist 104 1893-01-10 1895-01-08 1893 1895 1 1 10 8
Illinois John Peter Altgeld Democratic 209 1893-01-10 1897-01-11 1893 1897 1 1 10 11
Washington John Harte McGraw Republican 209 1893-01-11 1897-01-13 1893 1897 1 1 11 13
Nebraska Lorenzo Crounse Republican 103 1893-01-13 1895-01-03 1893 1895 1 1 13 3
Arkansas William Meade Fishback Democratic 105 1893-01-14 1895-01-18 1893 1895 1 1 14 18
Tennessee Peter Turney Democratic 209 1893-01-16 1897-01-21 1893 1897 1 1 16 21
New Jersey George Theodore Werts Democratic 157 1893-01-17 1896-01-21 1893 1896 1 1 17 21
North Carolina Elias Carr Republican 208 1893-01-18 1897-01-12 1893 1897 1 1 18 12
West Virginia William Alexander MacCorkle Democratic 209 1893-03-04 1897-03-04 1893 1897 3 3 4 4
Virginia Charles Triplett O’Ferrall Democratic 209 1894-01-01 1898-01-01 1894 1898 1 1 1 1
Massachusetts Frederic Thomas Greenhalge Republican 113 1894-01-04 1896-03-05 1894 1896 1 3 4 5
Iowa Frank Darr Jackson Republican 105 1894-01-11 1896-01-16 1894 1896 1 1 11 16
Vermont Urban Andrain Woodbury Republican 105 1894-10-04 1896-10-08 1894 1896 10 10 4 8
Georgia William Jonathan Northen Democratic 209 1894-10-27 1898-10-29 1894 1898 10 10 27 29
Alabama William Calvin Oates Democratic 104 1894-12-01 1896-12-01 1894 1896 12 12 1 1
South Carolina John Gary Evans Democratic 111 1894-12-04 1897-01-18 1894 1897 12 1 4 18
New York Levi Parsons Morton Republican 104 1894-12-31 1896-12-31 1894 1896 12 12 31 31
Nebraska Silas Alexander Holcomb Fusion 209 1895-01-03 1899-01-05 1895 1899 1 1 3 5
New Hampshire Charles Albert Busiel Republican 105 1895-01-03 1897-01-07 1895 1897 1 1 3 7
Nevada John Edward Jones Silver 66 1895-01-07 1896-04-10 1895 1896 1 4 7 10
Wisconsin William Henry Upham Republican 104 1895-01-07 1897-01-04 1895 1897 1 1 7 4
Wyoming William Alford Richards Republican 208 1895-01-07 1899-01-02 1895 1899 1 1 7 2
Colorado Albert Wills McIntire Republican 105 1895-01-08 1897-01-12 1895 1897 1 1 8 12
Connecticut Owen Vincent Coffin Republican 104 1895-01-09 1897-01-06 1895 1897 1 1 9 6
North Dakota Roger Allin Republican 104 1895-01-10 1897-01-06 1895 1897 1 1 10 6
California James Herbert Budd Democratic 208 1895-01-11 1899-01-04 1895 1899 1 1 11 4
Kansas Edmund Needham Morrill Republican 104 1895-01-14 1897-01-11 1895 1897 1 1 14 11
Oregon William Paine Lord Republican 208 1895-01-14 1899-01-09 1895 1899 1 1 14 9
Delaware Joshua Hopkins Marvil Republican 12 1895-01-15 1895-04-08 1895 1895 1 4 15 8
Pennsylvania Daniel Hartman Hastings Republican 209 1895-01-15 1899-01-17 1895 1899 1 1 15 17
Texas Charles Allen Culberson Democratic 209 1895-01-15 1899-01-17 1895 1899 1 1 15 17
Arkansas James Paul Clarke Democratic 104 1895-01-18 1897-01-18 1895 1897 1 1 18 18
Minnesota David Marston Clough Republican 205 1895-01-31 1899-01-02 1895 1899 1 1 31 2
Delaware William Tharp Watson Democratic 93 1895-04-08 1897-01-19 1895 1897 4 1 8 19
Rhode Island Charles Warren Lippitt Republican 104 1895-05-29 1897-05-25 1895 1897 5 5 29 25
Kentucky William O’Connell Bradley Republican 209 1895-12-10 1899-12-12 1895 1899 12 12 10 12
Utah Heber Manning Wells Republican 469 1896-01-06 1905-01-02 1896 1905 1 1 6 2
Maryland Lloyd Lowndes Jr.  Republican 209 1896-01-08 1900-01-10 1896 1900 1 1 8 10
Ohio Asa Smith Bushnell I Republican 208 1896-01-13 1900-01-08 1896 1900 1 1 13 8
Iowa Francis Marion Drake Republican 104 1896-01-16 1898-01-13 1896 1898 1 1 16 13
Mississippi Anselm Joseph McLaurin Democratic 208 1896-01-20 1900-01-16 1896 1900 1 1 20 16
New Jersey John William Griggs Republican 106 1896-01-21 1898-01-31 1896 1898 1 1 21 31
Massachusetts Roger Wolcott Republican 200 1896-03-05 1900-01-04 1896 1900 3 1 5 4
Nevada Reinhold Sadler Silver 351 1896-04-10 1903-01-05 1896 1903 4 1 10 5
Vermont Josiah Grout Jr.  Republican 104 1896-10-08 1898-10-06 1896 1898 10 10 8 6
Alabama Joseph Forney Johnston Democratic 209 1896-12-01 1900-12-01 1896 1900 12 12 1 1
New York Frank Swett Black Republican 104 1896-12-31 1898-12-31 1896 1898 12 12 31 31
Michigan Hazedn Stuart Pingree Republican 209 1897-01-01 1901-01-01 1897 1901 1 1 1 1
South Dakota Andrew Ericson Lee Populist 210 1897-01-01 1901-01-08 1897 1901 1 1 1 8
Maine Llewellyn Powers Republican 209 1897-01-02 1901-01-02 1897 1901 1 1 2 2
Montana Robert Burns Smith Democratic 209 1897-01-03 1901-01-07 1897 1901 1 1 3 7
Idaho Frank Steunenberg Democratic 209 1897-01-04 1901-01-07 1897 1901 1 1 4 7
Wisconsin Edward Scofield Republican 209 1897-01-04 1901-01-07 1897 1901 1 1 4 7
Florida William Dunnington Bloxham Democratic 209 1897-01-05 1901-01-08 1897 1901 1 1 5 8
Connecticut Lorrin Alanson Cooke Republican 104 1897-01-06 1899-01-04 1897 1899 1 1 6 4
North Dakota Frank A. Briggs Republican 83 1897-01-06 1898-08-09 1897 1898 1 8 6 9
New Hampshire George Allen Ramsdell Republican 104 1897-01-07 1899-01-05 1897 1899 1 1 7 5
Illinois John Riley Tanner Republican 209 1897-01-11 1901-01-14 1897 1901 1 1 11 14
Indiana James Atwell Mount Republican 209 1897-01-11 1901-01-14 1897 1901 1 1 11 14
Kansas John Whitnah Leedy Populist 104 1897-01-11 1899-01-09 1897 1899 1 1 11 9
Missouri Lawrence Vest Stephens Democratic 209 1897-01-11 1901-01-14 1897 1901 1 1 11 14
Colorado Alva Adams Democratic 104 1897-01-12 1899-01-10 1897 1899 1 1 12 10
North Carolina Daniel Lindsay Russell Jr.  Democratic 209 1897-01-12 1901-01-15 1897 1901 1 1 12 15
Washington John Rankin Rogers Populist 258 1897-01-13 1901-12-26 1897 1901 1 12 13 26
Arkansas Daniel Webster Jones Democratic 209 1897-01-18 1901-01-18 1897 1901 1 1 18 18
South Carolina William Hasselden Ellerbe Democratic 124 1897-01-18 1899-06-02 1897 1899 1 6 18 2
Delaware Ebe Walter Tunnell Democratic 208 1897-01-19 1901-01-15 1897 1901 1 1 19 15
Tennessee Robert Love Taylor Democratic 104 1897-01-21 1899-01-16 1897 1899 1 1 21 16
West Virginia George Wesley Atkinson Republican 209 1897-03-04 1901-03-04 1897 1901 3 3 4 4
Rhode Island Elisha Dyer Jr.  Republican 157 1897-05-25 1900-05-29 1897 1900 5 5 25 29
Virginia James Hoge Tyler Democratic 209 1898-01-01 1902-01-01 1898 1902 1 1 1 1
Iowa Leslie Mortier Shaw Republican 209 1898-01-13 1902-01-16 1898 1902 1 1 13 16
New Jersey Foster McGowan Voorhees Republican 37 1898-01-31 1898-10-18 1898 1898 1 10 31 18
North Dakota Joseph McMurray Devine Republican 21 1898-08-09 1899-01-03 1898 1899 8 1 9 3
Vermont Edward Curtis Smith Republican 104 1898-10-06 1900-10-04 1898 1900 10 10 6 4
New Jersey David Ogden Watkins Republican 13 1898-10-18 1899-01-17 1898 1899 10 1 18 17
Georgia William Yates Atkinson Democratic 208 1898-10-29 1902-10-25 1898 1902 10 10 29 25
New York Theodore Roosevelt Jr.  Republican 104 1898-12-31 1900-12-31 1898 1900 12 12 31 31
Minnesota John Lind Democratic 105 1899-01-02 1901-01-07 1899 1901 1 1 2 7
Wyoming DeForest Richards Republican 225 1899-01-02 1903-04-28 1899 1903 1 4 2 28
North Dakota Frederick Bartlett Fancher Republican 105 1899-01-03 1901-01-10 1899 1901 1 1 3 10
California Henry Tifft Gage Republican 209 1899-01-04 1903-01-07 1899 1903 1 1 4 7
Connecticut George Edward Lounsbury Republican 105 1899-01-04 1901-01-09 1899 1901 1 1 4 9
Nebraska William Amos Poynter Fusion 104 1899-01-05 1901-01-03 1899 1901 1 1 5 3
New Hampshire Frank West Rollins Republican 104 1899-01-05 1901-01-03 1899 1901 1 1 5 3
Kansas William Eugene Stanley Sr.  Republican 209 1899-01-09 1903-01-12 1899 1903 1 1 9 12
Oregon Theodore Thurston Geer Republican 209 1899-01-09 1903-01-15 1899 1903 1 1 9 15
Colorado Charles Spalding Thomas Democratic 104 1899-01-10 1901-01-08 1899 1901 1 1 10 8
Tennessee Benton McMillin Democratic 209 1899-01-16 1903-01-19 1899 1903 1 1 16 19
New Jersey Foster McGowan Voorhees Republican 157 1899-01-17 1902-01-21 1899 1902 1 1 17 21
Pennsylvania William Alexis Stone Republican 209 1899-01-17 1903-01-20 1899 1903 1 1 17 20
Texas Joseph Draper Sayers Democratic 209 1899-01-17 1903-01-20 1899 1903 1 1 17 20
South Carolina Miles Benjamin McSweeney Democratic 190 1899-06-02 1903-01-20 1899 1903 6 1 2 20
Kentucky William Sylvester Taylor Republican 7 1899-12-12 1900-01-31 1899 1900 12 1 12 31
Massachusetts Winthrop Murray Crane Republican 157 1900-01-04 1903-01-08 1900 1903 1 1 4 8
Ohio George Kilbon Nash Republican 209 1900-01-08 1904-01-11 1900 1904 1 1 8 11
Maryland John Walter Smith Democratic 209 1900-01-10 1904-01-13 1900 1904 1 1 10 13
Mississippi Andrew Houston Longino Democratic 209 1900-01-16 1904-01-19 1900 1904 1 1 16 19
Kentucky William Justus Goebel Democratic 0 1900-01-31 1900-02-03 1900 1900 1 2 31 3
Kentucky John Crepps Wickliffe Beckham Democratic 409 1900-02-03 1907-12-10 1900 1907 2 12 3 10
Louisiana William Wright Heard Democratic 208 1900-05-21 1904-05-16 1900 1904 5 5 21 16
Rhode Island William Gregory Republican 81 1900-05-29 1901-12-16 1900 1901 5 12 29 16
Vermont William Wallace Stickney Republican 104 1900-10-04 1902-10-03 1900 1902 10 10 4 3
Alabama William Dorsey Jelks Democratic 4 1900-12-01 1900-12-26 1900 1900 12 12 1 26
Alabama William James Samford Democratic 27 1900-12-01 1901-06-11 1900 1901 12 6 1 11
New York Benjamin Barker Odell Jr.  Republican 209 1900-12-31 1904-12-31 1900 1904 12 12 31 31
Michigan Aaron Thomas Bliss Republican 209 1901-01-01 1905-01-01 1901 1905 1 1 1 1
Maine John Fremont Hill Republican 209 1901-01-02 1905-01-04 1901 1905 1 1 2 4
Nebraska Charles Henry Dietrich Republican 17 1901-01-03 1901-05-01 1901 1901 1 5 3 1
New Hampshire Chester Bradley Jordan Republican 104 1901-01-03 1903-01-01 1901 1903 1 1 3 1
Idaho Frank Williams Hunt Democratic 104 1901-01-07 1903-01-05 1901 1903 1 1 7 5
Minnesota Jamuel Rinnah Van Sant Republican 208 1901-01-07 1905-01-04 1901 1905 1 1 7 4
Montana Joseph Kemp Toole Democratic 377 1901-01-07 1908-04-01 1901 1908 1 4 7 1
Wisconsin Robert Marion La Follette Sr.  Republican 260 1901-01-07 1906-01-01 1901 1906 1 1 7 1
Colorado James Bradley Orman Democratic 105 1901-01-08 1903-01-13 1901 1903 1 1 8 13
Florida William Sherman Jennings Democratic 208 1901-01-08 1905-01-03 1901 1905 1 1 8 3
South Dakota Charles Nelson Herreid Republican 208 1901-01-08 1905-01-03 1901 1905 1 1 8 3
Connecticut George Payne McLean Republican 104 1901-01-09 1903-01-07 1901 1903 1 1 9 7
North Dakota Frank White Republican 208 1901-01-10 1905-01-04 1901 1905 1 1 10 4
Illinois Richard Yates Jr.  Republican 208 1901-01-14 1905-01-09 1901 1905 1 1 14 9
Indiana Winfield Taylor Durbin Republican 208 1901-01-14 1905-01-09 1901 1905 1 1 14 9
Missouri Alexander Monroe Dockery Democratic 208 1901-01-14 1905-01-09 1901 1905 1 1 14 9
Delaware John Hunn Republican 209 1901-01-15 1905-01-17 1901 1905 1 1 15 17
North Carolina Charles Brantley Aycock Democratic 208 1901-01-15 1905-01-11 1901 1905 1 1 15 11
Arkansas Jeff Davis Democratic 313 1901-01-18 1907-01-18 1901 1907 1 1 18 18
West Virginia Albert Blakeslee White Republican 209 1901-03-04 1905-03-04 1901 1905 3 3 4 4
Nebraska Ezra Perin Savage Republican 88 1901-05-01 1903-01-08 1901 1903 5 1 1 8
Alabama William Dorsey Jelks Democratic 292 1901-06-11 1907-01-14 1901 1907 6 1 11 14
Rhode Island Charles Dean Kimball Republican 55 1901-12-16 1903-01-03 1901 1903 12 1 16 3
Washington Henry McBride Republican 159 1901-12-26 1905-01-11 1901 1905 12 1 26 11
Virginia Andrew Jackson Montague Democratic 213 1902-01-01 1906-02-01 1902 1906 1 2 1 1
Iowa Albert Baird Cummins Republican 358 1902-01-16 1908-11-24 1902 1908 1 11 16 24
New Jersey Franklin Murphy Republican 156 1902-01-21 1905-01-17 1902 1905 1 1 21 17
Vermont John Griffith McCullough Republican 105 1902-10-03 1904-10-06 1902 1904 10 10 3 6
Georgia Allen Daniel Candler Democratic 244 1902-10-25 1907-06-29 1902 1907 10 6 25 29
New Hampshire Nahum Josiah Bachelder Republican 105 1903-01-01 1905-01-05 1903 1905 1 1 1 5
Rhode Island Lucius Fayette Clark Garvin Democratic 104 1903-01-03 1905-01-03 1903 1905 1 1 3 3
Idaho John Tracy Morrison Republican 104 1903-01-05 1905-01-02 1903 1905 1 1 5 2
Nevada John Sparks Silver 281 1903-01-05 1908-05-22 1903 1908 1 5 5 22
California George Cooper Pardee Republican 209 1903-01-07 1907-01-09 1903 1907 1 1 7 9
Connecticut Abiram Chamberlain Republican 104 1903-01-07 1905-01-04 1903 1905 1 1 7 4
Massachusetts John Lewis Bates Republican 104 1903-01-08 1905-01-05 1903 1905 1 1 8 5
Nebraska John Hopwood Mickey Republican 208 1903-01-08 1907-01-03 1903 1907 1 1 8 3
Kansas Willis Joshua Bailey Republican 104 1903-01-12 1905-01-09 1903 1905 1 1 12 9
Colorado James Hamilton Peabody Republican 104 1903-01-13 1905-01-10 1903 1905 1 1 13 10
Oregon George Earle Chamberlain Sr.  Democratic 320 1903-01-15 1909-03-01 1903 1909 1 3 15 1
Tennessee James Beriah Frazier Democratic 113 1903-01-19 1905-03-21 1903 1905 1 3 19 21
Pennsylvania Samuel Whitaker Pennypacker Republican 208 1903-01-20 1907-01-15 1903 1907 1 1 20 15
South Carolina Duncan Clinch Heyward Democratic 208 1903-01-20 1907-01-15 1903 1907 1 1 20 15
Texas Samuel Willis Tucker Lanham Democratic 208 1903-01-20 1907-01-15 1903 1907 1 1 20 15
Wyoming Fenimore Chatterton Republican 88 1903-04-28 1905-01-02 1903 1905 4 1 28 2
Ohio Myron Timothy Herrick Republican 104 1904-01-11 1906-01-08 1904 1906 1 1 11 8
Maryland Edwin Warfield Democratic 208 1904-01-13 1908-01-08 1904 1908 1 1 13 8
Mississippi James Kimble Vardaman Democratic 209 1904-01-19 1908-01-21 1904 1908 1 1 19 21
Louisiana Newton Crain Blanchard Democratic 209 1904-05-16 1908-05-18 1904 1908 5 5 16 18
Vermont Charles James Bell Republican 104 1904-10-06 1906-10-04 1904 1906 10 10 6 4
New York Frank Wayland Higgins Republican 104 1904-12-31 1906-12-31 1904 1906 12 12 31 31
Michigan Fred Maltby Warner Republican 313 1905-01-01 1911-01-02 1905 1911 1 1 1 2
Idaho Frank Robert Gooding Republican 209 1905-01-02 1909-01-04 1905 1909 1 1 2 4
Utah John Christopher Cutler Republican 209 1905-01-02 1909-01-04 1905 1909 1 1 2 4
Wyoming Bryant Butler Brooks Republican 313 1905-01-02 1911-01-02 1905 1911 1 1 2 2
Florida Napoleon Bonaparte Broward Democratic 209 1905-01-03 1909-01-05 1905 1909 1 1 3 5
Rhode Island George Herbert Utter Republican 104 1905-01-03 1907-01-01 1905 1907 1 1 3 1
South Dakota Samuel Harrison Elrod Republican 105 1905-01-03 1907-01-08 1905 1907 1 1 3 8
Connecticut Henry Roberts Republican 105 1905-01-04 1907-01-09 1905 1907 1 1 4 9
Maine William Titcomb Cobb Republican 209 1905-01-04 1909-01-06 1905 1909 1 1 4 6
Minnesota John Albert Johnson Democratic 246 1905-01-04 1909-09-21 1905 1909 1 9 4 21
North Dakota Elmore Yocum Sarles Republican 105 1905-01-04 1907-01-09 1905 1907 1 1 4 9
Massachusetts William Lewis Douglas Democratic 52 1905-01-05 1906-01-04 1905 1906 1 1 5 4
New Hampshire John McLane Republican 104 1905-01-05 1907-01-03 1905 1907 1 1 5 3
Illinois Charles Samuel Deneen Republican 421 1905-01-09 1913-02-03 1905 1913 1 2 9 3
Indiana James Franklin Hanly Republican 209 1905-01-09 1909-01-11 1905 1909 1 1 9 11
Kansas Edward Wallis Hoch Republican 209 1905-01-09 1909-01-11 1905 1909 1 1 9 11
Missouri Joseph Wingate Folk Democratic 209 1905-01-09 1909-01-11 1905 1909 1 1 9 11
Colorado Alva Adams Democratic 9 1905-01-10 1905-03-16 1905 1905 1 3 10 16
North Carolina Robert Broadnax Glenn Democratic 209 1905-01-11 1909-01-12 1905 1909 1 1 11 12
Washington Albert Edward Mead Republican 211 1905-01-11 1909-01-27 1905 1909 1 1 11 27
Delaware Preston Lea Republican 209 1905-01-17 1909-01-19 1905 1909 1 1 17 19
New Jersey Edward Casper Stokes Republican 157 1905-01-17 1908-01-21 1905 1908 1 1 17 21
West Virginia William Mercer Owens Dawson Republican 209 1905-03-04 1909-03-04 1905 1909 3 3 4 4
Colorado James Hamilton Peabody Republican 0 1905-03-16 1905-03-17 1905 1905 3 3 16 17
Colorado Jesse Fuller McDonald Democratic 95 1905-03-17 1907-01-08 1905 1907 3 1 17 8
Tennessee John Isaac Cox Democratic 95 1905-03-21 1907-01-17 1905 1907 3 1 21 17
Wisconsin James Ole Davidson Republican 261 1906-01-01 1911-01-02 1906 1911 1 1 1 2
Massachusetts Curtis Guild Jr.  Republican 157 1906-01-04 1909-01-07 1906 1909 1 1 4 7
Ohio John M. Pattison Democratic 23 1906-01-08 1906-06-18 1906 1906 1 6 8 18
Virginia Claude Augustus Swanson Democratic 209 1906-02-01 1910-02-01 1906 1910 2 2 1 1
Ohio Andrew Lintner Harris Republican 134 1906-06-18 1909-01-11 1906 1909 6 1 18 11
Vermont Fletcher Dutton Proctor Republican 105 1906-10-04 1908-10-08 1906 1908 10 10 4 8
New York Charles Evans Hughes Sr.  Republican 196 1906-12-31 1910-10-06 1906 1910 12 10 31 6
Rhode Island James Henry Higgins Democratic 105 1907-01-01 1909-01-05 1907 1909 1 1 1 5
Nebraska George Lawson Sheldon Republican 105 1907-01-03 1909-01-07 1907 1909 1 1 3 7
New Hampshire Charles Miller Floyd Republican 105 1907-01-03 1909-01-07 1907 1909 1 1 3 7
Colorado Henry Augustus Buchtel Republican 105 1907-01-08 1909-01-12 1907 1909 1 1 8 12
South Dakota Coe Isaac Crawford Republican 104 1907-01-08 1909-01-05 1907 1909 1 1 8 5
California James Norris Gillett Republican 208 1907-01-09 1911-01-03 1907 1911 1 1 9 3
Connecticut Rollin Simmons Woodruff Republican 104 1907-01-09 1909-01-06 1907 1909 1 1 9 6
North Dakota John Burke Democratic 313 1907-01-09 1913-01-08 1907 1913 1 1 9 8
Alabama Braxton Bragg Comer Democratic 209 1907-01-14 1911-01-16 1907 1911 1 1 14 16
Pennsylvania Edwin Sydney Stuart Republican 209 1907-01-15 1911-01-17 1907 1911 1 1 15 17
South Carolina Martin Frederick Ansel Democratic 209 1907-01-15 1911-01-17 1907 1911 1 1 15 17
Texas Thomas Mitchell Campbell Democratic 209 1907-01-15 1911-01-17 1907 1911 1 1 15 17
Tennessee Malcolm Rice Patterson Democratic 210 1907-01-17 1911-01-26 1907 1911 1 1 17 26
Arkansas John Sebastian Little Democratic 3 1907-01-18 1907-02-11 1907 1907 1 2 18 11
Arkansas John Isaac Moore Democratic 13 1907-02-11 1907-05-14 1907 1907 2 5 11 14
Arkansas Xenophon Overton Pindall Democratic 87 1907-05-14 1909-01-11 1907 1909 5 1 14 11
Georgia Joseph Meriwether Terrell Democratic 104 1907-06-29 1909-06-26 1907 1909 6 6 29 26
Oklahoma Charles Nathaniel Haskell Democratic 164 1907-11-16 1911-01-09 1907 1911 11 1 16 9
Kentucky Augustus Everett Willson Republican 209 1907-12-10 1911-12-12 1907 1911 12 12 10 12
Maryland Austin Lane Crothers Democratic 209 1908-01-08 1912-01-10 1908 1912 1 1 8 10
Mississippi Edmond Favor Noel Democratic 208 1908-01-21 1912-01-16 1908 1912 1 1 21 16
New Jersey John Franklin Fort Republican 156 1908-01-21 1911-01-17 1908 1911 1 1 21 17
Montana Edwin Lee Norris Democratic 249 1908-04-01 1913-01-05 1908 1913 4 1 1 5
Louisiana Jared Youn Sanders Sr.  Democratic 209 1908-05-18 1912-05-20 1908 1912 5 5 18 20
Nevada Denver Sylvester Dickerson Silver 136 1908-05-22 1911-01-02 1908 1911 5 1 22 2
Vermont George Herbert Prouty Republican 104 1908-10-08 1910-10-05 1908 1910 10 10 8 5
Iowa Warren Garst Republican 7 1908-11-24 1909-01-14 1908 1909 11 1 24 14
Idaho James Henry Brady Republican 104 1909-01-04 1911-01-02 1909 1911 1 1 4 2
Utah William Spry Republican 417 1909-01-04 1917-01-01 1909 1917 1 1 4 1
Florida Albert Waller Gilchrist Democratic 209 1909-01-05 1913-01-07 1909 1913 1 1 5 7
Rhode Island Aram Jules Pothier Republican 313 1909-01-05 1915-01-05 1909 1915 1 1 5 5
South Dakota Robert Scadden Vessey Republican 209 1909-01-05 1913-01-07 1909 1913 1 1 5 7
Connecticut George Leavens Lilley Republican 15 1909-01-06 1909-04-21 1909 1909 1 4 6 21
Maine Bert Manfred Fernald Republican 104 1909-01-06 1911-01-04 1909 1911 1 1 6 4
Massachusetts Eben Sumner Draper Republican 104 1909-01-07 1911-01-05 1909 1911 1 1 7 5
Nebraska Ashton Cokayne Shallenberger Democratic 104 1909-01-07 1911-01-05 1909 1911 1 1 7 5
New Hampshire Henry Brewer Quinby Republican 104 1909-01-07 1911-01-05 1909 1911 1 1 7 5
Arkansas Jesse M. Martin Democratic 0 1909-01-11 1909-01-14 1909 1909 1 1 11 14
Indiana Thomas Riley Marshall Democratic 209 1909-01-11 1913-01-13 1909 1913 1 1 11 13
Kansas Walter Roscoe Stubbs Republican 209 1909-01-11 1913-01-13 1909 1913 1 1 11 13
Missouri Herbert Spencer Hadley Republican 209 1909-01-11 1913-01-13 1909 1913 1 1 11 13
Ohio Judson Harmon Democratic 209 1909-01-11 1913-01-13 1909 1913 1 1 11 13
Colorado John Franklin Shafroth Democratic 209 1909-01-12 1913-01-14 1909 1913 1 1 12 14
North Carolina William Walton Kitchin Democratic 209 1909-01-12 1913-01-15 1909 1913 1 1 12 15
Arkansas George Washington Donaghey Democratic 209 1909-01-14 1913-01-16 1909 1913 1 1 14 16
Iowa Beryl Franklin Carroll Republican 209 1909-01-14 1913-01-16 1909 1913 1 1 14 16
Delaware Simeon Selby Pennewill Republican 209 1909-01-19 1913-01-21 1909 1913 1 1 19 21
Washington Samuel Goodlove Cosgrove Republican 9 1909-01-27 1909-03-28 1909 1909 1 3 27 28
Oregon Frank Williamson Benson Republican 68 1909-03-01 1910-06-17 1909 1910 3 6 1 17
West Virginia Williams Ellsworth Glasscock Republican 210 1909-03-04 1913-03-14 1909 1913 3 3 4 14
Washington Marion E. Hay Republican 198 1909-03-28 1913-01-15 1909 1913 3 1 28 15
Connecticut Frank Bentley Weeks Republican 89 1909-04-21 1911-01-05 1909 1911 4 1 21 5
Georgia Michael Hoke Smith Democratic 105 1909-06-26 1911-07-01 1909 1911 6 7 26 1
Minnesota Adolph Olson Eberhart Republican 276 1909-09-21 1915-01-05 1909 1915 9 1 21 5
Virginia William Hodges Mann Democratic 209 1910-02-01 1914-02-01 1910 1914 2 2 1 1
Oregon Jay Bowerman Republican 30 1910-06-17 1911-01-11 1910 1911 6 1 17 11
Vermont John Abner Mead Republican 104 1910-10-05 1912-10-03 1910 1912 10 10 5 3
New York Horace White Republican 12 1910-10-06 1910-12-31 1910 1910 10 12 6 31
New York John Alden Dix Democratic 104 1910-12-31 1912-12-31 1910 1912 12 12 31 31
Idaho James Henry Hawley Democratic 105 1911-01-02 1913-01-06 1911 1913 1 1 2 6
Michigan Chase Salmon Osborn Republican 104 1911-01-02 1913-01-01 1911 1913 1 1 2 1
Nevada Tasker Lowndes Oddie Republican 209 1911-01-02 1915-01-04 1911 1915 1 1 2 4
Wisconsin Francis Edward McGovern Republican 209 1911-01-02 1915-01-04 1911 1915 1 1 2 4
Wyoming Joseph Maull Carey Democratic 209 1911-01-02 1915-01-04 1911 1915 1 1 2 4
California Hiram Warren Johnson Progressive 323 1911-01-03 1917-03-15 1911 1917 1 3 3 15
Maine Frederick William Plaisted Democratic 104 1911-01-04 1913-01-01 1911 1913 1 1 4 1
Connecticut Simeon Eben Baldwin Democratic 209 1911-01-05 1915-01-06 1911 1915 1 1 5 6
Massachusetts Eugene Noble Foss Democratic 157 1911-01-05 1914-01-08 1911 1914 1 1 5 8
Nebraska Chester Hardy Aldrich Republican 105 1911-01-05 1913-01-09 1911 1913 1 1 5 9
New Hampshire Robert Perkins Bass Republican 104 1911-01-05 1913-01-02 1911 1913 1 1 5 2
Oklahoma Lee Cruce Democratic 209 1911-01-09 1915-01-11 1911 1915 1 1 9 11
Oregon Oswald West Democratic 209 1911-01-11 1915-01-12 1911 1915 1 1 11 12
Alabama Emmet O’Neal Democratic 209 1911-01-16 1915-01-18 1911 1915 1 1 16 18
New Jersey Thomas Woodrow Wilson Democratic 111 1911-01-17 1913-03-01 1911 1913 1 3 17 1
Pennsylvania John Kinley Tener Republican 209 1911-01-17 1915-01-19 1911 1915 1 1 17 19
South Carolina Coleman Livingston Blease Democratic 208 1911-01-17 1915-01-14 1911 1915 1 1 17 14
Texas Oscar Branch Colquitt Democratic 209 1911-01-17 1915-01-19 1911 1915 1 1 17 19
Tennessee Ben Walter Hooper Republican 207 1911-01-26 1915-01-17 1911 1915 1 1 26 17
Georgia Joseph Mackey Brown Democratic 20 1911-07-01 1911-11-15 1911 1911 7 11 1 15
Georgia Michae Hoke Smith Democratic 10 1911-11-15 1912-01-25 1911 1912 11 1 15 25
Kentucky James Bennett McCreary Democratic 208 1911-12-12 1915-12-07 1911 1915 12 12 12 7
Maryland Philip Lee Goldsborough I Republican 209 1912-01-10 1916-01-12 1912 1916 1 1 10 12
New Mexico William Calhoun McDonald Democratic 259 1912-01-14 1917-01-01 1912 1917 1 1 14 1
Mississippi Earl Leroy Brewer Democratic 209 1912-01-16 1916-01-18 1912 1916 1 1 16 18
Georgia John Marshall Slaton Democratic 74 1912-01-25 1913-06-28 1912 1913 1 6 25 28
Arizona George Wylie Paul Hunt Democratic 255 1912-02-14 1917-01-01 1912 1917 2 1 14 1
Louisiana Luther Egbert Hall Democratic 208 1912-05-20 1916-05-15 1912 1916 5 5 20 15
Vermont Allen Miller Fletcher Republican 118 1912-10-03 1915-01-07 1912 1915 10 1 3 7
New York William Sulzer Democratic 41 1912-12-31 1913-10-17 1912 1913 12 10 31 17
Maine William Thomas Haines Republican 105 1913-01-01 1915-01-06 1913 1915 1 1 1 6
Michigan Woodbridge Nathan Ferris Democratic 209 1913-01-01 1917-01-01 1913 1917 1 1 1 1
New Hampshire Samuel Demeritt Felker Democratic 104 1913-01-02 1915-01-01 1913 1915 1 1 2 1
Montana Samuel Vernon Stewart Democratic 417 1913-01-05 1921-01-02 1913 1921 1 1 5 2
Idaho John Michiner Haines Republican 104 1913-01-06 1915-01-04 1913 1915 1 1 6 4
Florida Park Monroe Trammell Democratic 208 1913-01-07 1917-01-02 1913 1917 1 1 7 2
South Dakota Frank Morris Byrne Republican 208 1913-01-07 1917-01-02 1913 1917 1 1 7 2
North Dakota Louis Benjamin Hanna Republican 208 1913-01-08 1917-01-03 1913 1917 1 1 8 3
Nebraska John Henry Morehead Democratic 208 1913-01-09 1917-01-04 1913 1917 1 1 9 4
Indiana Samuel Moffett Ralston Democratic 208 1913-01-13 1917-01-08 1913 1917 1 1 13 8
Kansas George Hartshorn Hodges Democratic 104 1913-01-13 1915-01-11 1913 1915 1 1 13 11
Missouri Elliot Woolfolk Major Democratic 208 1913-01-13 1917-01-08 1913 1917 1 1 13 8
Ohio James Middleton Cox Democratic 104 1913-01-13 1915-01-11 1913 1915 1 1 13 11
Colorado Elias Milton Ammons Democratic 104 1913-01-14 1915-01-12 1913 1915 1 1 14 12
North Carolina Locke Craig Democratic 208 1913-01-15 1917-01-11 1913 1917 1 1 15 11
Washington Ernest Lister Democratic 317 1913-01-15 1919-02-13 1913 1919 1 2 15 13
Arkansas Joseph Taylor Robinson Democratic 7 1913-01-16 1913-03-08 1913 1913 1 3 16 8
Iowa George Washington Clarke Republican 208 1913-01-16 1917-01-11 1913 1917 1 1 16 11
Delaware Charles Robert Miller Republican 208 1913-01-21 1917-01-16 1913 1917 1 1 21 16
Illinois Edward Fitzsimmons Dunne Democratic 205 1913-02-03 1917-01-08 1913 1917 2 1 3 8
New Jersey James Fairman Fielder Democratic 34 1913-03-01 1913-10-28 1913 1913 3 10 1 28
Arkansas William Kavanaugh Oldham Democratic 1 1913-03-08 1913-03-13 1913 1913 3 3 8 13
Arkansas Junius Marion Futrell Democratic 21 1913-03-13 1913-08-06 1913 1913 3 8 13 6
West Virginia Henry Drury Hatfield Republican 207 1913-03-14 1917-03-05 1913 1917 3 3 14 5
Georgia Joseph Mackey Brown Democratic 104 1913-06-28 1915-06-26 1913 1915 6 6 28 26
Arkansas George Washington Hays Democratic 179 1913-08-06 1917-01-10 1913 1917 8 1 6 10
New York Martin Henry Glynn Democratic 63 1913-10-17 1914-12-31 1913 1914 10 12 17 31
New Jersey Leon Rutherford Taylor Democratic 12 1913-10-28 1914-01-20 1913 1914 10 1 28 20
Massachusetts David Ignatius Walsh Democratic 104 1914-01-08 1916-01-06 1914 1916 1 1 8 6
New Jersey James Fairman Fielder Democratic 156 1914-01-20 1917-01-16 1914 1917 1 1 20 16
Virginia Henry Carter Stuart Democratic 209 1914-02-01 1918-02-01 1914 1918 2 2 1 1
New York Charles Seymour Whitman Republican 209 1914-12-31 1918-12-31 1914 1918 12 12 31 31
New Hampshire Rolland Harty Spaulding Republican 105 1915-01-01 1917-01-02 1915 1917 1 1 1 2
Idaho Moses Alexander Democratic 209 1915-01-04 1919-01-06 1915 1919 1 1 4 6
Nevada Emmet Derby Boyle Democratic 417 1915-01-04 1923-01-01 1915 1923 1 1 4 1
Wisconsin Emanuel Lorenz Philipp Republican 313 1915-01-04 1921-01-03 1915 1921 1 1 4 3
Wyoming John Benjamin Kendrick Democratic 112 1915-01-04 1917-02-26 1915 1917 1 2 4 26
Minnesota Winfield Scott Hammond Democratic 51 1915-01-05 1915-12-30 1915 1915 1 12 5 30
Rhode Island Robert Livingston Beeckman Republican 313 1915-01-05 1921-01-04 1915 1921 1 1 5 4
Connecticut Marcus H. Holcomb Republican 313 1915-01-06 1921-01-05 1915 1921 1 1 6 5
Maine Oakley Chester Curtis Democratic 104 1915-01-06 1917-01-03 1915 1917 1 1 6 3
Vermont Charles Winslow Gates Republican 104 1915-01-07 1917-01-04 1915 1917 1 1 7 4
Kansas Arthur Capper Republican 209 1915-01-11 1919-01-13 1915 1919 1 1 11 13
Ohio Frank Bartlett Willis Republican 104 1915-01-11 1917-01-08 1915 1917 1 1 11 8
Oklahoma Robert Lee Williams Democratic 209 1915-01-11 1919-01-13 1915 1919 1 1 11 13
Colorado George Alfred Carlson Republican 104 1915-01-12 1917-01-09 1915 1917 1 1 12 9
Oregon James Withycombe Republican 216 1915-01-12 1919-03-03 1915 1919 1 3 12 3
South Carolina Charles Aurelius Smith Democratic 1 1915-01-14 1915-01-19 1915 1915 1 1 14 19
Tennessee Thomas Clarke Rye Democratic 208 1915-01-17 1919-01-15 1915 1919 1 1 17 15
Alabama Charles Henderson Democratic 209 1915-01-18 1919-01-20 1915 1919 1 1 18 20
Pennsylvania Martin Grove Brumbaugh Republican 209 1915-01-19 1919-01-21 1915 1919 1 1 19 21
South Carolina Richard Irvine Manning III Democratic 209 1915-01-19 1919-01-21 1915 1919 1 1 19 21
Texas James Edward Ferguson Jr.  Democratic 136 1915-01-19 1917-08-25 1915 1917 1 8 19 25
Georgia John Marshall Slaton Democratic 105 1915-06-26 1917-06-30 1915 1917 6 6 26 30
Kentucky Augustus Owsley Stanley I Democratic 180 1915-12-07 1919-05-19 1915 1919 12 5 7 19
Minnesota Joseph Alfred Arner Burnquist Republican 262 1915-12-30 1921-01-05 1915 1921 12 1 30 5
Massachusetts Samuel Walker McCall Republican 156 1916-01-06 1919-01-02 1916 1919 1 1 6 2
Maryland Emerson Columbus Harrington Democratic 209 1916-01-12 1920-01-14 1916 1920 1 1 12 14
Mississippi Theodore Gilmore Bilbo Democratic 209 1916-01-18 1920-01-18 1916 1920 1 1 18 18
Louisiana Ruffin Golson Pleasant Democratic 209 1916-05-15 1920-05-17 1916 1920 5 5 15 17
Arizona Thomas Edward Campbell Republican 51 1917-01-01 1917-12-25 1917 1917 1 12 1 25
Michigan Albert Edson Sleeper Republican 209 1917-01-01 1921-01-01 1917 1921 1 1 1 1
New Mexico Ezequiel Cabeza De Baca Democratic 7 1917-01-01 1917-02-18 1917 1917 1 2 1 18
Utah Simon Bamberger Democratic 209 1917-01-01 1921-01-03 1917 1921 1 1 1 3
Florida Sidney Johnston Catts Prohibition 209 1917-01-02 1921-01-04 1917 1921 1 1 2 4
New Hampshire Henry Wilder Keyes Republican 105 1917-01-02 1919-01-06 1917 1919 1 1 2 6
South Dakota Peter Norbeck Republican 209 1917-01-02 1921-01-04 1917 1921 1 1 2 4
Maine Carl Elias Milliken Republican 209 1917-01-03 1921-01-05 1917 1921 1 1 3 5
North Dakota Lynn Joseph Frazier Republican 255 1917-01-03 1921-11-23 1917 1921 1 11 3 23
Nebraska Morell Keith Neville Democratic 105 1917-01-04 1919-01-09 1917 1919 1 1 4 9
Vermont Horace French Graham Republican 105 1917-01-04 1919-01-09 1917 1919 1 1 4 9
Illinois Frank Orren Lowden Republican 209 1917-01-08 1921-01-10 1917 1921 1 1 8 10
Indiana James Putnam Goodrich Republican 209 1917-01-08 1921-01-10 1917 1921 1 1 8 10
Missouri Frederick Dozier Gardner Democratic 209 1917-01-08 1921-01-10 1917 1921 1 1 8 10
Ohio James Middleton Cox Democratic 209 1917-01-08 1921-01-10 1917 1921 1 1 8 10
Colorado Julius Caldeen Gunter Democratic 105 1917-01-09 1919-01-14 1917 1919 1 1 9 14
Arkansas Charles Hillman Brough Democratic 209 1917-01-10 1921-01-11 1917 1921 1 1 10 11
Iowa William Lloyd Harding Republican 209 1917-01-11 1921-01-13 1917 1921 1 1 11 13
North Carolina Thomas Walter Bickett Democratic 209 1917-01-11 1921-01-12 1917 1921 1 1 11 12
Delaware John Gillis Townsend Jr.  Republican 209 1917-01-16 1921-01-18 1917 1921 1 1 16 18
New Jersey Walter Evans Edge Republican 121 1917-01-16 1919-05-16 1917 1919 1 5 16 16
New Mexico Washington Ellsworth Lindsey Republican 97 1917-02-18 1919-01-01 1917 1919 2 1 18 1
Wyoming Frank Lee Houx Democratic 97 1917-02-26 1919-01-06 1917 1919 2 1 26 6
West Virginia John Jacob Cornwell Democratic 209 1917-03-05 1921-03-04 1917 1921 3 3 5 4
California William Dennison Stephens Republican 304 1917-03-15 1923-01-08 1917 1923 3 1 15 8
Georgia Nathaniel Edwin Harris Democratic 208 1917-06-30 1921-06-25 1917 1921 6 6 30 25
Texas William Pettus Hobby Democratic 177 1917-08-25 1921-01-18 1917 1921 8 1 25 18
Arizona George Wylie Paul Hunt Democratic 54 1917-12-25 1919-01-06 1917 1919 12 1 25 6
Virginia Westmoreland Davis Democratic 209 1918-02-01 1922-02-01 1918 1922 2 2 1 1
New York Alfred Emanuel Smith Democratic 104 1918-12-31 1920-12-31 1918 1920 12 12 31 31
New Mexico Octaviano Ambrosio Larrazolo Republican 104 1919-01-01 1921-01-01 1919 1921 1 1 1 1
Massachusetts Calvin Coolidge Republican 105 1919-01-02 1921-01-06 1919 1921 1 1 2 6
Arizona Thomas Edward Campbell Republican 208 1919-01-06 1923-01-01 1919 1923 1 1 6 1
Idaho David William Davis Republican 208 1919-01-06 1923-01-01 1919 1923 1 1 6 1
New Hampshire John Henry Bartlett Republican 104 1919-01-06 1921-01-06 1919 1921 1 1 6 6
Wyoming Robert Davis Carey Republican 208 1919-01-06 1923-01-01 1919 1923 1 1 6 1
Nebraska Samuel Roy McKelvie Republican 208 1919-01-09 1923-01-03 1919 1923 1 1 9 3
Vermont Percival Wood Clement Republican 104 1919-01-09 1921-01-06 1919 1921 1 1 9 6
Kansas Henry Justin Allen Republican 208 1919-01-13 1923-01-08 1919 1923 1 1 13 8
Oklahoma James Brooks Ayres Robertson Democratic 208 1919-01-13 1923-01-08 1919 1923 1 1 13 8
Colorado Oliver Henry Shoup Republican 208 1919-01-14 1923-01-09 1919 1923 1 1 14 9
Tennessee Albert Houston Roberts Democratic 104 1919-01-15 1921-01-15 1919 1921 1 1 15 15
Alabama Thomas Kilby Democratic 208 1919-01-20 1923-01-15 1919 1923 1 1 20 15
Pennsylvania William Cameron Sproul Republican 208 1919-01-21 1923-01-16 1919 1923 1 1 21 16
South Carolina Robert Archer Cooper Democratic 174 1919-01-21 1922-05-20 1919 1922 1 5 21 20
Washington Louis Folwell Hart Republican 309 1919-02-13 1925-01-14 1919 1925 2 1 13 14
Oregon Ben Wilson Olcott Republican 201 1919-03-03 1923-01-08 1919 1923 3 1 3 8
New Jersey William Nelson Runyon Republican 35 1919-05-16 1920-01-13 1919 1920 5 1 16 13
Kentucky James Dixon Black Democratic 29 1919-05-19 1919-12-09 1919 1919 5 12 19 9
Kentucky Edwin Porch Morrow Republican 209 1919-12-09 1923-12-11 1919 1923 12 12 9 11
New Jersey Clarence Edwards Case Republican 1 1920-01-13 1920-01-20 1920 1920 1 1 13 20
Maryland Albter Cabell Ritchie Democratic 782 1920-01-14 1935-01-09 1920 1935 1 1 14 9
Mississippi Lee Maurice Russell Democratic 209 1920-01-18 1924-01-18 1920 1924 1 1 18 18
New Jersey Edward Irving Edwards Democratic 156 1920-01-20 1923-01-15 1920 1923 1 1 20 15
Louisiana John Milliken Parker Sr.  Democratic 209 1920-05-17 1924-05-19 1920 1924 5 5 17 19
New York Nathan Lewis Miller Republican 104 1920-12-31 1922-12-31 1920 1922 12 12 31 31
Michigan Alex Joseph Groesbeck Republican 313 1921-01-01 1927-01-01 1921 1927 1 1 1 1
New Mexico Merritt Cramer Mechem Republican 104 1921-01-01 1923-01-01 1921 1923 1 1 1 1
Montana Joseph Moore Dixon Republican 209 1921-01-02 1925-01-04 1921 1925 1 1 2 4
Utah Charles Rendell Mabey Republican 209 1921-01-03 1925-01-05 1921 1925 1 1 3 5
Wisconsin John James Blaine Republican 313 1921-01-03 1927-01-03 1921 1927 1 1 3 3
Florida Cary Augustus Hardee Democratic 209 1921-01-04 1925-01-06 1921 1925 1 1 4 6
Rhode Island Emery John San Souci Republican 104 1921-01-04 1923-01-02 1921 1923 1 1 4 2
South Dakota William Henry McMaster Republican 209 1921-01-04 1925-01-06 1921 1925 1 1 4 6
Connecticut Everett J. Lake Republican 104 1921-01-05 1923-01-03 1921 1923 1 1 5 3
Maine Frederic Hale Parkhurst Republican 4 1921-01-05 1921-01-31 1921 1921 1 1 5 31
Minnesota Jacob Aall Ottesen Preus Republican 209 1921-01-05 1925-01-06 1921 1925 1 1 5 6
Massachusetts Channing Haris Cox Republican 209 1921-01-06 1925-01-08 1921 1925 1 1 6 8
New Hampshire Albert Oscar Brown Republican 104 1921-01-06 1923-01-04 1921 1923 1 1 6 4
Vermont James Hartness Republican 104 1921-01-06 1923-01-04 1921 1923 1 1 6 4
Illinois Lennington Small Republican 418 1921-01-10 1929-01-14 1921 1929 1 1 10 14
Indiana Warren Terry McCray Republican 172 1921-01-10 1924-04-30 1921 1924 1 4 10 30
Missouri Arthur Mastick Hyde Republican 209 1921-01-10 1925-01-12 1921 1925 1 1 10 12
Ohio Harry Lyman Davis Republican 104 1921-01-10 1923-01-08 1921 1923 1 1 10 8
Arkansas Thomas Chipman McRae Democratic 209 1921-01-11 1925-01-13 1921 1925 1 1 11 13
North Carolina Cameron A. Morrison Democratic 209 1921-01-12 1925-01-14 1921 1925 1 1 12 14
Iowa Nathan Edward Kendall Republican 209 1921-01-13 1925-01-15 1921 1925 1 1 13 15
Tennessee Alfred Alexander Taylor Republican 104 1921-01-15 1923-01-16 1921 1923 1 1 15 16
Delaware William duHamel Denney Republican 209 1921-01-18 1925-01-20 1921 1925 1 1 18 20
Texas Pat Morris Neff Democratic 209 1921-01-18 1925-01-20 1921 1925 1 1 18 20
Maine Percival Proctor Baxter Republican 205 1921-01-31 1925-01-07 1921 1925 1 1 31 7
Georgia Hugh Manson Dorsey Democratic 105 1921-06-25 1923-06-30 1921 1923 6 6 25 30
North Dakota Ragnvald Anderson Nestos Republican 163 1921-11-23 1925-01-07 1921 1925 11 1 23 7
Virginia Elbert Lee Trinkle Democratic 209 1922-02-01 1926-02-01 1922 1926 2 2 1 1
South Carolina Wilson Godfrey Harvey Democratic 34 1922-05-20 1923-01-16 1922 1923 5 1 20 16
New York Alfred Emanuel Smith Democratic 313 1922-12-31 1928-12-31 1922 1928 12 12 31 31
Arizona George Wylie Paul Hunt Democratic 314 1923-01-01 1929-01-07 1923 1929 1 1 1 7
Idaho Charles Calvin Moore Republican 209 1923-01-01 1927-01-03 1923 1927 1 1 1 3
Nevada James Graves Scrugham Democratic 209 1923-01-01 1927-01-03 1923 1927 1 1 1 3
New Mexico James Fielding Hinkle Democratic 104 1923-01-01 1925-01-01 1923 1925 1 1 1 1
Wyoming William Bradford Ross Democratic 91 1923-01-01 1924-10-02 1923 1924 1 10 1 2
Rhode Island William Smith Flynn Democratic 105 1923-01-02 1925-01-06 1923 1925 1 1 2 6
Connecticut Charles Augustus Templeton Republican 105 1923-01-03 1925-01-07 1923 1925 1 1 3 7
Nebraska Charles Wayland Bryan Democratic 105 1923-01-03 1925-01-08 1923 1925 1 1 3 8
New Hampshire Fred Herbert Brown Democratic 104 1923-01-04 1925-01-01 1923 1925 1 1 4 1
Vermont Redfield Proctor Jr.  Republican 105 1923-01-04 1925-01-08 1923 1925 1 1 4 8
California Friend William Richardson Republican 208 1923-01-08 1927-01-04 1923 1927 1 1 8 4
Kansas Jonathan McMillan Davis Democratic 105 1923-01-08 1925-01-12 1923 1925 1 1 8 12
Ohio Alvin Victor Donahey Democratic 314 1923-01-08 1929-01-14 1923 1929 1 1 8 14
Oklahoma John Calloway Walton Democratic 45 1923-01-08 1923-11-19 1923 1923 1 11 8 19
Oregon Walter Marcus Pierce Democratic 209 1923-01-08 1927-01-10 1923 1927 1 1 8 10
Colorado William Ellery Sweet Democratic 105 1923-01-09 1925-01-13 1923 1925 1 1 9 13
Alabama William Woodward Brandon Democratic 209 1923-01-15 1927-01-17 1923 1927 1 1 15 17
New Jersey George Sebastian Silzer Democratic 157 1923-01-15 1926-01-19 1923 1926 1 1 15 19
Pennsylvania Gilford Pinchot Republican 209 1923-01-16 1927-01-18 1923 1927 1 1 16 18
South Carolina Thomas Gordon McLeod Democratic 209 1923-01-16 1927-01-18 1923 1927 1 1 16 18
Tennessee Austin Peay Democratic 246 1923-01-16 1927-10-03 1923 1927 1 10 16 3
Georgia Thomas William Hardwick Democratic 208 1923-06-30 1927-06-25 1923 1927 6 6 30 25
Oklahoma Martin Edwin Trapp Democratic 164 1923-11-19 1927-01-10 1923 1927 11 1 19 10
Kentucky William Jason Fields Democratic 209 1923-12-11 1927-12-13 1923 1927 12 12 11 13
Mississippi Henry Lewis Whitfield Democratic 165 1924-01-18 1927-03-18 1924 1927 1 3 18 18
Indiana Emmett Forest Branch Republican 37 1924-04-30 1925-01-12 1924 1925 4 1 30 12
Louisiana Henry Luse Fuqua Sr.  Democratic 125 1924-05-19 1926-10-11 1924 1926 5 10 19 11
Wyoming Franklin Earl Lucas Republican 14 1924-10-02 1925-01-05 1924 1925 10 1 2 5
New Hampshire John Gilbert Winant Republican 105 1925-01-01 1927-01-06 1925 1927 1 1 1 6
New Mexico Arthur Thomas Hannett Democratic 104 1925-01-01 1927-01-01 1925 1927 1 1 1 1
Montana John Edward Erickson Democratic 427 1925-01-04 1933-03-13 1925 1933 1 3 4 13
Utah George Henry Dern Democratic 417 1925-01-05 1933-01-02 1925 1933 1 1 5 2
Wyoming Nellie Davis Tayloe Ross Democratic 104 1925-01-05 1927-01-03 1925 1927 1 1 5 3
Florida John Wellborn Martin Democratic 209 1925-01-06 1929-01-08 1925 1929 1 1 6 8
Minnesota Theodore Christianson Republican 313 1925-01-06 1931-01-06 1925 1931 1 1 6 6
Rhode Island Aram Jules Pothier Republican 161 1925-01-06 1928-02-04 1925 1928 1 2 6 4
South Dakota Carl Gunderson Republican 104 1925-01-06 1927-01-05 1925 1927 1 1 6 5
Connecticut Hiram Bingham III Republican 0 1925-01-07 1925-01-08 1925 1925 1 1 7 8
Maine Ralph Owen Brewster Republican 208 1925-01-07 1929-01-02 1925 1929 1 1 7 2
North Dakota Arthur Gustave Sorlie Republican 190 1925-01-07 1928-08-28 1925 1928 1 8 7 28
Connecticut John Harper Trumbull Republican 313 1925-01-08 1931-01-07 1925 1931 1 1 8 7
Massachusetts Alvan Tufts Fuller Republican 208 1925-01-08 1929-01-03 1925 1929 1 1 8 3
Nebraska Adam McMullen Republican 208 1925-01-08 1929-01-03 1925 1929 1 1 8 3
Vermont Franklin Swift Billings Republican 104 1925-01-08 1927-01-06 1925 1927 1 1 8 6
Indiana Edward L. Jackson Republican 209 1925-01-12 1929-01-14 1925 1929 1 1 12 14
Kansas Benjamin Sanford Paulen Republican 209 1925-01-12 1929-01-14 1925 1929 1 1 12 14
Missouri Samuel Aaron Baker Republican 209 1925-01-12 1929-01-14 1925 1929 1 1 12 14
Arkansas Thomas Jefferson Terral Democratic 104 1925-01-13 1927-01-11 1925 1927 1 1 13 11
Colorado Clarence Joseph Morley Republican 104 1925-01-13 1927-01-11 1925 1927 1 1 13 11
North Carolina Angus Wilton McLean Democratic 208 1925-01-14 1929-01-11 1925 1929 1 1 14 11
Washington Roland Hill Hartley Republican 417 1925-01-14 1933-01-11 1925 1933 1 1 14 11
Iowa John Hammill Republican 313 1925-01-15 1931-01-15 1925 1931 1 1 15 15
Delaware Robert Pyle Robinson Republican 208 1925-01-20 1929-01-15 1925 1929 1 1 20 15
Texas Miriam Amanda Wallace Ferguson Democratic 104 1925-01-20 1927-01-18 1925 1927 1 1 20 18
West Virginia Howard Mason Gore Republican 209 1925-03-04 1929-03-04 1925 1929 3 3 4 4
New Jersey Arthur Harry Moore Democratic 156 1926-01-19 1929-01-15 1926 1929 1 1 19 15
Virginia Harry Flood Byrd Sr.  Democratic 206 1926-02-01 1930-01-15 1926 1930 2 1 1 15
Louisiana Oramel Hinckley Simpson Democratic 84 1926-10-11 1928-05-21 1926 1928 10 5 11 21
Michigan Fred Warren Green Republican 209 1927-01-01 1931-01-01 1927 1931 1 1 1 1
New Mexico Richard Charles Dillon Republican 209 1927-01-01 1931-01-01 1927 1931 1 1 1 1
Idaho Henry Clarence Baldridge Republican 209 1927-01-03 1931-01-05 1927 1931 1 1 3 5
Nevada Frederick Bennett Balzar Republican 376 1927-01-03 1934-03-21 1927 1934 1 3 3 21
Wisconsin Frederick Robert Zimmerman Republican 105 1927-01-03 1929-01-07 1927 1929 1 1 3 7
Wyoming Frank Collins Emerson Republican 215 1927-01-03 1931-02-18 1927 1931 1 2 3 18
California Clement Calhoun Young Republican 209 1927-01-04 1931-01-06 1927 1931 1 1 4 6
South Dakota William John Bulow Democratic 209 1927-01-05 1931-01-06 1927 1931 1 1 5 6
New Hampshire Huntley Nowel Spaulding Republican 104 1927-01-06 1929-01-03 1927 1929 1 1 6 3
Vermont John Eliakim Weeks Republican 209 1927-01-06 1931-01-08 1927 1931 1 1 6 8
Oklahoma Henry Simpson Johnston Democratic 114 1927-01-10 1929-03-20 1927 1929 1 3 10 20
Oregon Isaac Lee Patterson Republican 154 1927-01-10 1929-12-21 1927 1929 1 12 10 21
Arkansas John Ellis Martineau Democratic 61 1927-01-11 1928-03-14 1927 1928 1 3 11 14
Colorado William Herbert Adams Democratic 313 1927-01-11 1933-01-10 1927 1933 1 1 11 10
Alabama David Bibb Graves Democratic 209 1927-01-17 1931-01-19 1927 1931 1 1 17 19
Pennsylvania John Stuchell Fisher Republican 209 1927-01-18 1931-01-20 1927 1931 1 1 18 20
South Carolina John Gardiner Richards Jr.  Democratic 209 1927-01-18 1931-01-20 1927 1931 1 1 18 20
Texas Daniel James Moody Jr.  Democratic 209 1927-01-18 1931-01-20 1927 1931 1 1 18 20
Mississippi Dennis Herron Murphree Democratic 43 1927-03-18 1928-01-16 1927 1928 3 1 18 16
Georgia Clifford Mitchell Walker Democratic 209 1927-06-25 1931-06-27 1927 1931 6 6 25 27
Tennessee Henry Hollis Horton Democratic 276 1927-10-03 1933-01-17 1927 1933 10 1 3 17
Kentucky Flemon Davis Sampson Republican 208 1927-12-13 1931-12-08 1927 1931 12 12 13 8
Mississippi Theodore Gilmore Bilbo Democratic 209 1928-01-16 1932-01-19 1928 1932 1 1 16 19
Rhode Island Norman Stanley Case Republican 256 1928-02-04 1933-01-03 1928 1933 2 1 4 3
Arkansas Harvey Parnell Democratic 252 1928-03-14 1933-01-10 1928 1933 3 1 14 10
Louisiana Huey Pierce Long Jr.  Democratic 192 1928-05-21 1932-01-25 1928 1932 5 1 21 25
North Dakota Walter Jeremiah Maddock Republican 19 1928-08-28 1929-01-09 1928 1929 8 1 28 9
New York Franklin Delano Roosevelt Democratic 209 1928-12-31 1932-12-31 1928 1932 12 12 31 31
Maine William Tudor Gardiner Republican 209 1929-01-02 1933-01-04 1929 1933 1 1 2 4
Massachusetts Frank Gilman Allen Republican 105 1929-01-03 1931-01-08 1929 1931 1 1 3 8
Nebraska Arthur Jerard Weaver Republican 105 1929-01-03 1931-01-08 1929 1931 1 1 3 8
New Hampshire Charles William Tobey Republican 104 1929-01-03 1931-01-01 1929 1931 1 1 3 1
Arizona John Calhoun Philips Republican 104 1929-01-07 1931-01-05 1929 1931 1 1 7 5
Wisconsin Walter Jodok Kohler Sr.  Republican 104 1929-01-07 1931-01-05 1929 1931 1 1 7 5
Florida Doyle Elam Carlton Sr.  Democratic 208 1929-01-08 1933-01-03 1929 1933 1 1 8 3
North Dakota George F. Shafer Republican 207 1929-01-09 1932-12-31 1929 1932 1 12 9 31
North Carolina Oliver Max Gardner Democratic 208 1929-01-11 1933-01-05 1929 1933 1 1 11 5
Illinois Louis Lincoln Emmerson Republican 208 1929-01-14 1933-01-09 1929 1933 1 1 14 9
Indiana Harry Guyer Leslie Republican 208 1929-01-14 1933-01-09 1929 1933 1 1 14 9
Kansas Clyde Martin Reed Republican 104 1929-01-14 1931-01-12 1929 1931 1 1 14 12
Missouri Henry Stewart Caulfield Republican 208 1929-01-14 1933-01-09 1929 1933 1 1 14 9
Ohio Myers Young Cooper Republican 104 1929-01-14 1931-01-12 1929 1931 1 1 14 12
Delaware Clayton Douglass Buck Republican 418 1929-01-15 1937-01-19 1929 1937 1 1 15 19
New Jersey Morgan Foster Larson Republican 157 1929-01-15 1932-01-19 1929 1932 1 1 15 19
West Virginia William Gustavus Conley Republican 209 1929-03-04 1933-03-04 1929 1933 3 3 4 4
Oklahoma William Judson Holloway Democratic 93 1929-03-20 1931-01-01 1929 1931 3 1 20 1
Oregon Albin Walter Norblad Sr.  Republican 55 1929-12-21 1931-01-12 1929 1931 12 1 21 12
Virginia John Garland Pollard Democratic 209 1930-01-15 1934-01-16 1930 1934 1 1 15 16
Michigan Wilber Marion Brucker Republican 104 1931-01-01 1933-01-01 1931 1933 1 1 1 1
New Hampshire John Gilbert Winant Republican 209 1931-01-01 1935-01-03 1931 1935 1 1 1 3
New Mexico Arthur Seligman Democratic 143 1931-01-01 1933-09-25 1931 1933 1 9 1 25
Oklahoma William Henry Davis Murray Democratic 210 1931-01-01 1935-01-13 1931 1935 1 1 1 13
Arizona George Wylie Paul Hunt Democratic 104 1931-01-05 1933-01-02 1931 1933 1 1 5 2
Idaho Charles Benjamin Ross Democratic 313 1931-01-05 1937-01-04 1931 1937 1 1 5 4
Wisconsin Philip Fox La Follette Republican 104 1931-01-05 1933-01-02 1931 1933 1 1 5 2
California James Rolph Jr.  Republican 178 1931-01-06 1934-06-02 1931 1934 1 6 6 2
Minnesota Floyd Bjornstjerne Olson Farmer-Labor 294 1931-01-06 1936-08-22 1931 1936 1 8 6 22
South Dakota Warren Everett Green Republican 104 1931-01-06 1933-01-02 1931 1933 1 1 6 2
Connecticut Wilbur Lucius Cross Democratic 417 1931-01-07 1939-01-04 1931 1939 1 1 7 4
Massachusetts Joseph Buell Ely Democratic 208 1931-01-08 1935-01-03 1931 1935 1 1 8 3
Nebraska Charles Wayland Bryan Democratic 208 1931-01-08 1935-01-03 1931 1935 1 1 8 3
Vermont Stanley Calef Wilson Republican 209 1931-01-08 1935-01-10 1931 1935 1 1 8 10
Kansas Harry Hines Woodring Democratic 104 1931-01-12 1933-01-09 1931 1933 1 1 12 9
Ohio George White Democratic 209 1931-01-12 1935-01-14 1931 1935 1 1 12 14
Oregon Julius L. Meier Independent 209 1931-01-12 1935-01-14 1931 1935 1 1 12 14
Iowa Daniel Webster Turner Republican 104 1931-01-15 1933-01-12 1931 1933 1 1 15 12
Alabama Benjamin Meek Miller Democratic 208 1931-01-19 1935-01-14 1931 1935 1 1 19 14
Pennsylvania Gilford Pinchot Republican 208 1931-01-20 1935-01-15 1931 1935 1 1 20 15
South Carolina Ibra Charles Blackwood Democratic 208 1931-01-20 1935-01-15 1931 1935 1 1 20 15
Texas Ross Shaw Sterling Democratic 104 1931-01-20 1933-01-17 1931 1933 1 1 20 17
Wyoming Alonzo Monroe Clark Republican 98 1931-02-18 1933-01-02 1931 1933 2 1 18 2
Georgia Lamartine Griffin Hardman Democratic 80 1931-06-27 1933-01-10 1931 1933 6 1 27 10
Kentucky Ruby Laffoon Democratic 209 1931-12-08 1935-12-10 1931 1935 12 12 8 10
Mississippi Martin Sennet Conner Democratic 209 1932-01-19 1936-01-21 1932 1936 1 1 19 21
New Jersey Arthur Harry Moore Democratic 154 1932-01-19 1935-01-03 1932 1935 1 1 19 3
Louisiana Alvin Olin King Democratic 16 1932-01-25 1932-05-16 1932 1932 1 5 25 16
Louisiana Oscar Kelley Allen Sr.  Democratic 193 1932-05-16 1936-01-28 1932 1936 5 1 16 28
New York Herbert Henry Lehman Democratic 518 1932-12-31 1942-12-03 1932 1942 12 12 31 3
North Dakota William Langer Republican 77 1932-12-31 1934-06-21 1932 1934 12 6 31 21
Michigan William Alfred Comstock Democratic 104 1933-01-01 1935-01-01 1933 1935 1 1 1 1
Arizona Benjamin Baker Moeur Democratic 209 1933-01-02 1937-01-04 1933 1937 1 1 2 4
South Dakota Thomas Matthew Berry Democratic 209 1933-01-02 1937-01-05 1933 1937 1 1 2 5
Utah Henry Hooper Blood Democratic 418 1933-01-02 1941-01-06 1933 1941 1 1 2 6
Wisconsin Albert George Schmedeman Democratic 105 1933-01-02 1935-01-07 1933 1935 1 1 2 7
Wyoming Leslie Andrew Miller Democratic 313 1933-01-02 1939-01-02 1933 1939 1 1 2 2
Florida David Sholtz Democratic 209 1933-01-03 1937-01-05 1933 1937 1 1 3 5
Rhode Island Theodore Francis Green Democratic 209 1933-01-03 1937-01-05 1933 1937 1 1 3 5
Maine Louis Jefferson Brann Democratic 209 1933-01-04 1937-01-06 1933 1937 1 1 4 6
North Carolina John Christopher Blucher Ehringhaus Democratic 209 1933-01-05 1937-01-07 1933 1937 1 1 5 7
Illinois Henry Horner Democratic 404 1933-01-09 1940-10-06 1933 1940 1 10 9 6
Indiana Paul Vories McNutt Democratic 209 1933-01-09 1937-01-11 1933 1937 1 1 9 11
Kansas Alf Mossman Landon Republican 209 1933-01-09 1937-01-11 1933 1937 1 1 9 11
Missouri Guy Brasfield Park Democratic 209 1933-01-09 1937-01-11 1933 1937 1 1 9 11
Arkansas Junius Marion Futrell Democratic 209 1933-01-10 1937-01-12 1933 1937 1 1 10 12
Colorado Edwin Carl Johnson Democratic 207 1933-01-10 1937-01-01 1933 1937 1 1 10 1
Georgia Richard Brevard Russell Jr.  Democratic 209 1933-01-10 1937-01-12 1933 1937 1 1 10 12
Washington Clarence Daniel Martin Democratic 418 1933-01-11 1941-01-15 1933 1941 1 1 11 15
Arkansas Carl Edward Bailey Democratic 731 1933-01-12 1947-01-14 1933 1947 1 1 12 14
Colorado Teller Ammons Democratic 313 1933-01-12 1939-01-10 1933 1939 1 1 12 10
Colorado John Charles Vivian Republican 731 1933-01-12 1947-01-13 1933 1947 1 1 12 13
Georgia Eugene Talmadge Democratic 731 1933-01-12 1947-01-14 1933 1947 1 1 12 14
Georgia Eugene Talmadge Democratic 731 1933-01-12 1947-01-14 1933 1947 1 1 12 14
Iowa Clyde LaVerne Herring Democratic 731 1933-01-12 1947-01-14 1933 1947 1 1 12 14
Tennessee Harry Hill McAlister Democratic 208 1933-01-17 1937-01-15 1933 1937 1 1 17 15
Texas Miriam Amanda Wallace Ferguson Democratic 104 1933-01-17 1935-01-15 1933 1935 1 1 17 15
West Virginia Herman Guy Kump Democratic 202 1933-03-04 1937-01-18 1933 1937 3 1 4 18
Montana Frank Henry Cooney Democratic 144 1933-03-13 1935-12-15 1933 1935 3 12 13 15
New Mexico Andrew W. Hockenhull Democratic 66 1933-09-25 1935-01-01 1933 1935 9 1 25 1
Virginia George Campbell Peery Democratic 209 1934-01-16 1938-01-18 1934 1938 1 1 16 18
Nevada Morley Isaac Griswold Republican 42 1934-03-21 1935-01-07 1934 1935 3 1 21 7
California Frank Finley Merriam Republican 239 1934-06-02 1939-01-02 1934 1939 6 1 2 2
North Dakota Ole H. Olson Republican 29 1934-06-21 1935-01-07 1934 1935 6 1 21 7
Michigan Frank Dwight Fitzgerald Republican 104 1935-01-01 1937-01-01 1935 1937 1 1 1 1
New Mexico Clyde Kendle Tingley Democratic 209 1935-01-01 1939-01-01 1935 1939 1 1 1 1
Massachusetts James Michael Curley Democratic 105 1935-01-03 1937-01-07 1935 1937 1 1 3 7
Nebraska Robert Leroy Cochran Democratic 314 1935-01-03 1941-01-09 1935 1941 1 1 3 9
New Hampshire Henry Styles Bridges Republican 105 1935-01-03 1937-01-07 1935 1937 1 1 3 7
New Jersey Clifford Ross Powell Republican 1 1935-01-03 1935-01-08 1935 1935 1 1 3 8
Nevada Richard Kirman Sr.  Democratic 208 1935-01-07 1939-01-02 1935 1939 1 1 7 2
North Dakota Thomas H. Moodie Democratic 4 1935-01-07 1935-02-02 1935 1935 1 2 7 2
Wisconsin Philip Fox La Follette Wisconsin Progressive 208 1935-01-07 1939-01-02 1935 1939 1 1 7 2
New Jersey Horace Griggs Prall Republican 1 1935-01-08 1935-01-15 1935 1935 1 1 8 15
Maryland Harry Whinna Nice Republican 209 1935-01-09 1939-01-11 1935 1939 1 1 9 11
Vermont Charles Manley Smith Republican 104 1935-01-10 1937-01-07 1935 1937 1 1 10 7
Oklahoma Ernest Whitworth Marland Democratic 208 1935-01-13 1939-01-09 1935 1939 1 1 13 9
Alabama David Bibb Graves Democratic 209 1935-01-14 1939-01-16 1935 1939 1 1 14 16
Ohio Martin Luther Davey Democratic 208 1935-01-14 1939-01-09 1935 1939 1 1 14 9
Oregon Charles Henry Martin Democratic 208 1935-01-14 1939-01-09 1935 1939 1 1 14 9
New Jersey Harold Giles Hoffman Republican 157 1935-01-15 1938-01-18 1935 1938 1 1 15 18
Pennsylvania George Howard Earle III Democratic 209 1935-01-15 1939-01-17 1935 1939 1 1 15 17
South Carolina Olin DeWitt Talmadge Johnston Democratic 209 1935-01-15 1939-01-17 1935 1939 1 1 15 17
Texas James Burr V Allred Democratic 209 1935-01-15 1939-01-17 1935 1939 1 1 15 17
North Dakota Walter Welford Republican 101 1935-02-02 1937-01-06 1935 1937 2 1 2 6
Kentucky Albert Benjamin Chandler Sr.  Democratic 200 1935-12-10 1939-10-09 1935 1939 12 10 10 9
Montana William Elmer Holt Democratic 55 1935-12-15 1937-01-04 1935 1937 12 1 15 4
Mississippi Hugh Lawson White Democratic 208 1936-01-21 1940-01-16 1936 1940 1 1 21 16
Louisiana James Albert Noe Sr.  Democratic 15 1936-01-28 1936-05-12 1936 1936 1 5 28 12
Louisiana Richard Webster Leche Democratic 163 1936-05-12 1939-06-26 1936 1939 5 6 12 26
Minnesota Hjalmar Petersen Farmer-Labor 19 1936-08-22 1937-01-04 1936 1937 8 1 22 4
Colorado Raymond Herbert Talbot Democratic 2 1937-01-01 1937-01-12 1937 1937 1 1 1 12
Michigan William Francis Murphy Democratic 104 1937-01-01 1939-01-01 1937 1939 1 1 1 1
Arizona Rawghlie Clement Stanford Democratic 104 1937-01-04 1939-01-02 1937 1939 1 1 4 2
Idaho Barzilla Worth Clark Democratic 104 1937-01-04 1939-01-02 1937 1939 1 1 4 2
Minnesota Elmer Austin Benson Farmer-Labor 104 1937-01-04 1939-01-02 1937 1939 1 1 4 2
Montana Roy Elmer Ayers Democratic 209 1937-01-04 1941-01-06 1937 1941 1 1 4 6
Florida Frederick Preston Cone Democratic 209 1937-01-05 1941-01-07 1937 1941 1 1 5 7
South Dakota Leslie Jensen Republican 104 1937-01-05 1939-01-03 1937 1939 1 1 5 3
Maine Lewis Orin Barrows Republican 208 1937-01-06 1941-01-01 1937 1941 1 1 6 1
North Dakota William Langer Republican 104 1937-01-06 1939-01-05 1937 1939 1 1 6 5
Massachusetts Charles Francis Hurley Democratic 104 1937-01-07 1939-01-05 1937 1939 1 1 7 5
New Hampshire Francis Parnell Murphy Republican 208 1937-01-07 1941-01-02 1937 1941 1 1 7 2
North Carolina Clyde Roark Hoey Democratic 209 1937-01-07 1941-01-09 1937 1941 1 1 7 9
Vermont George David Aiken Republican 209 1937-01-07 1941-01-09 1937 1941 1 1 7 9
Indiana Maurice Clifford Townsend Democratic 209 1937-01-11 1941-01-13 1937 1941 1 1 11 13
Kansas Walter Augustus Huxman Democratic 104 1937-01-11 1939-01-09 1937 1939 1 1 11 9
Missouri Lloyd Crow Stark Democratic 215 1937-01-11 1941-02-26 1937 1941 1 2 11 26
Iowa Nelson George Kraschel Democratic 104 1937-01-14 1939-01-12 1937 1939 1 1 14 12
Tennessee Gordon Weaver Browning Democratic 104 1937-01-15 1939-01-16 1937 1939 1 1 15 16
West Virginia Homer Adams Holt Democratic 208 1937-01-18 1941-01-13 1937 1941 1 1 18 13
Delaware Richard Cann McMullen Democratic 209 1937-01-19 1941-01-21 1937 1941 1 1 19 21
New Jersey Arthur Harry Moore Democratic 157 1938-01-18 1941-01-21 1938 1941 1 1 18 21
Michigan Frank Dwight Fitzgerald Republican 11 1939-01-01 1939-03-16 1939 1939 1 3 1 16
New Mexico John Easten Miles Democratic 209 1939-01-01 1943-01-01 1939 1943 1 1 1 1
Arizona Robert Taylor Jones Democratic 105 1939-01-02 1941-01-06 1939 1941 1 1 2 6
California Culbert Levy Olson Democratic 209 1939-01-02 1943-01-04 1939 1943 1 1 2 4
Idaho Clarence Alfred Bottolfsen Republican 105 1939-01-02 1941-01-06 1939 1941 1 1 2 6
Minnesota Harold Edward Stassen Republican 225 1939-01-02 1943-04-27 1939 1943 1 4 2 27
Nevada Edward Peter Carville Democratic 342 1939-01-02 1945-07-24 1939 1945 1 7 2 24
Wisconsin Julius Peter Heil Republican 209 1939-01-02 1943-01-04 1939 1943 1 1 2 4
Wyoming Nels Hansen Smith Republican 209 1939-01-02 1943-01-04 1939 1943 1 1 2 4
South Dakota Harlan John Bushfield Republican 209 1939-01-03 1943-01-05 1939 1943 1 1 3 5
Connecticut Raymond Earl Baldwin Republican 105 1939-01-04 1941-01-08 1939 1941 1 1 4 8
Massachusetts Leverett A. Saltonstall Republican 313 1939-01-05 1945-01-04 1939 1945 1 1 5 4
North Dakota John Moses Democratic 313 1939-01-05 1945-01-04 1939 1945 1 1 5 4
Kansas Payne Harry Ratner Republican 209 1939-01-09 1943-01-11 1939 1943 1 1 9 11
Ohio John William Bricker Republican 313 1939-01-09 1945-01-08 1939 1945 1 1 9 8
Oklahoma Leon Chase Phillips Democratic 209 1939-01-09 1943-01-11 1939 1943 1 1 9 11
Oregon Charles Arthur Sprague Republican 209 1939-01-09 1943-01-11 1939 1943 1 1 9 11
Colorado Ralph Lawrence Carr Republican 209 1939-01-10 1943-01-12 1939 1943 1 1 10 12
Maryland Herbert Romulus O’Conor Democratic 416 1939-01-11 1947-01-03 1939 1947 1 1 11 3
Iowa George Allison Wilson Republican 209 1939-01-12 1943-01-14 1939 1943 1 1 12 14
Alabama Frank Murray Dixon Democratic 209 1939-01-16 1943-01-18 1939 1943 1 1 16 18
Tennessee William Prentice Cooper Jr.  Democratic 313 1939-01-16 1945-01-16 1939 1945 1 1 16 16
Pennsylvania Arthur Horace James Republican 209 1939-01-17 1943-01-19 1939 1943 1 1 17 19
South Carolina Burnet Rhett Maybank Democratic 146 1939-01-17 1941-11-04 1939 1941 1 11 17 4
Texas Wilbert Lee O’Daniel Democratic 133 1939-01-17 1941-08-04 1939 1941 1 8 17 4
Michigan Luren Dudley Dickinson Republican 94 1939-03-16 1941-01-01 1939 1941 3 1 16 1
Louisiana Earl Kemp Long Democratic 46 1939-06-26 1940-05-14 1939 1940 6 5 26 14
Kentucky Keen Johnson Democratic 217 1939-10-09 1943-12-07 1939 1943 10 12 9 7
Mississippi Paul Burney Johnson Sr.  Democratic 206 1940-01-16 1943-12-26 1940 1943 1 12 16 26
Louisiana Samuel Houston Jones Democratic 208 1940-05-14 1944-05-09 1940 1944 5 5 14 9
Illinois John Henry Stelle Democratic 14 1940-10-06 1941-01-13 1940 1941 10 1 6 13
Maine Sumner Sewall Republican 209 1941-01-01 1945-01-03 1941 1945 1 1 1 3
Michigan Murray Delos Van Wagoner Democratic 104 1941-01-01 1943-01-01 1941 1943 1 1 1 1
New Hampshire Robert Oscar Blood Republican 209 1941-01-02 1945-01-04 1941 1945 1 1 2 4
Arizona Sidney Preston Oscborn Democratic 385 1941-01-06 1948-05-25 1941 1948 1 5 6 25
Idaho Chase Addison Clark Democratic 104 1941-01-06 1943-01-04 1941 1943 1 1 6 4
Montana Samuel Clarence Ford Republican 417 1941-01-06 1949-01-03 1941 1949 1 1 6 3
Utah Herbert Brown Maw Democratic 417 1941-01-06 1949-01-03 1941 1949 1 1 6 3
Florida Spessard Lindsey Holland Democratic 208 1941-01-07 1945-01-02 1941 1945 1 1 7 2
Rhode Island James Howard McGrath Democratic 248 1941-01-07 1945-10-06 1941 1945 1 10 7 6
Connecticut Robert Augustine Hurley Democratic 104 1941-01-08 1943-01-06 1941 1943 1 1 8 6
Nebraska Dwight Palmer Giswold Republican 313 1941-01-09 1947-01-09 1941 1947 1 1 9 9
North Carolina Joseph Melville Broughton Jr.  Democratic 208 1941-01-09 1945-01-04 1941 1945 1 1 9 4
Vermont William Henry Wills Republican 208 1941-01-09 1945-01-04 1941 1945 1 1 9 4
Illinois Dwight Herbert Green Republican 417 1941-01-13 1949-01-10 1941 1949 1 1 13 10
Indiana Henry Frederick Schricker Democratic 208 1941-01-13 1945-01-08 1941 1945 1 1 13 8
West Virginia Matthew Mansfield Neely Democratic 209 1941-01-13 1945-01-15 1941 1945 1 1 13 15
Arkansas Homer Martin Adkins Democratic 208 1941-01-14 1945-01-09 1941 1945 1 1 14 9
Georgia Eurith Dickenson Rivers Democratic 104 1941-01-14 1943-01-12 1941 1943 1 1 14 12
Georgia Ellis Gibbs Arnall Democratic 313 1941-01-14 1947-01-14 1941 1947 1 1 14 14
Georgia Eugene Talmadge Democratic 313 1941-01-14 1947-01-14 1941 1947 1 1 14 14
Georgia Herman Eugene Talmadge Democratic 322 1941-01-14 1947-03-18 1941 1947 1 3 14 18
Iowa Bourke Blakemore Hickenlooper Republican 208 1941-01-14 1945-01-11 1941 1945 1 1 14 11
Washington Arthur Bernard Langlie Republican 208 1941-01-15 1945-01-10 1941 1945 1 1 15 10
Delaware Walter Wolfkiel Bacon Republican 417 1941-01-21 1949-01-18 1941 1949 1 1 21 18
New Jersey Charles Edison Democratic 156 1941-01-21 1944-01-18 1941 1944 1 1 21 18
Missouri Forrest Carl Donnell Republican 202 1941-02-26 1945-01-08 1941 1945 2 1 26 8
Texas Coke Robert Stevenson Democratic 285 1941-08-04 1947-01-21 1941 1947 8 1 4 21
South Carolina Joseph Emile Harley Democratic 16 1941-11-04 1942-02-27 1941 1942 11 2 4 27
Virginia Colgate Whitehead Darden Jr.  Democratic 208 1942-01-20 1946-01-15 1942 1946 1 1 20 15
South Carolina Richard Manning Jefferies Democratic 46 1942-03-02 1943-01-19 1942 1943 3 1 2 19
New York Charles Poletti Democratic 4 1942-12-03 1942-12-31 1942 1942 12 12 3 31
New York Thomas Edmund Dewey Republican 626 1942-12-31 1954-12-31 1942 1954 12 12 31 31
Michigan Harry Francis Kelly Republican 209 1943-01-01 1947-01-01 1943 1947 1 1 1 1
New Mexico John Joseph Dempsey Democratic 209 1943-01-01 1947-01-01 1943 1947 1 1 1 1
California Earl Warren Republican 561 1943-01-04 1953-10-05 1943 1953 1 10 4 5
Idaho Clarence Alfred Bottolfsen Republican 104 1943-01-04 1945-01-01 1943 1945 1 1 4 1
Wisconsin Orland Steen Loomis Wisconsin Progressive 0 1943-01-04 1943-01-04 1943 1943 1 1 4 4
Wisconsin Walter Samuel Goodland Republican 218 1943-01-04 1947-03-12 1943 1947 1 3 4 12
Wyoming Lester Callaway Hunt Sr.  Democratic 313 1943-01-04 1949-01-03 1943 1949 1 1 4 3
South Dakota Merrell Quentin Sharpe Republican 209 1943-01-05 1947-01-07 1943 1947 1 1 5 7
Connecticut Raymond Earl Baldwin Republican 207 1943-01-06 1946-12-27 1943 1946 1 12 6 27
Kansas Andrew Frank Schoeppel Republican 209 1943-01-11 1947-01-13 1943 1947 1 1 11 13
Oklahoma Robert Samuel Kerr Democratic 209 1943-01-11 1947-01-13 1943 1947 1 1 11 13
Oregon Earl Wilcox Snell Republican 250 1943-01-11 1947-10-30 1943 1947 1 10 11 30
Alabama George Chauncey Sparks Democratic 209 1943-01-18 1947-01-20 1943 1947 1 1 18 20
Pennsylvania Edward Martin Republican 206 1943-01-19 1947-01-02 1943 1947 1 1 19 2
South Carolina Olin DeWitt Talmadge Johnston Democratic 102 1943-01-19 1945-01-02 1943 1945 1 1 19 2
Minnesota Edward John Thye Republican 193 1943-04-27 1947-01-08 1943 1947 4 1 27 8
Kentucky Simeon Slavens Willis Republican 209 1943-12-07 1947-12-09 1943 1947 12 12 7 9
Mississippi Dennis Herron Murphree Democratic 3 1943-12-26 1944-01-18 1943 1944 12 1 26 18
Mississippi Thomas Lowry Bailey Democratic 146 1944-01-18 1946-11-02 1944 1946 1 11 18 2
New Jersey Walter Evans Edge Republican 157 1944-01-18 1947-01-21 1944 1947 1 1 18 21
Louisiana James Houston Davis Democratic 209 1944-05-09 1948-05-11 1944 1948 5 5 9 11
Idaho Charles Clinton Gossett Democratic 46 1945-01-01 1945-11-17 1945 1945 1 11 1 17
Florida Millard Fillmore Caldwell Democratic 209 1945-01-02 1949-01-04 1945 1949 1 1 2 4
South Carolina Ransome Judson Williams Democratic 107 1945-01-02 1947-01-21 1945 1947 1 1 2 21
Maine Horace Augustus Hildreth Republican 209 1945-01-03 1949-01-05 1945 1949 1 1 3 5
Massachusetts Maurice Joseph Tobin Democratic 104 1945-01-04 1947-01-02 1945 1947 1 1 4 2
New Hampshire Charles Milby Dale Republican 209 1945-01-04 1949-01-06 1945 1949 1 1 4 6
North Carolina Robert Gregg Cherry Democratic 209 1945-01-04 1949-01-06 1945 1949 1 1 4 6
North Dakota Fred George Aandahl Republican 313 1945-01-04 1951-01-03 1945 1951 1 1 4 3
Vermont Mortimer Robinson Proctor Republican 105 1945-01-04 1947-01-09 1945 1947 1 1 4 9
Indiana Ralph Fesler Gates Republican 209 1945-01-08 1949-01-10 1945 1949 1 1 8 10
Missouri Philip Matthew Donnelly Democratic 209 1945-01-08 1949-01-10 1945 1949 1 1 8 10
Ohio Frank John Lausche Democratic 105 1945-01-08 1947-01-13 1945 1947 1 1 8 13
Arkansas Benjamin Travis Laney Jr.  Democratic 209 1945-01-09 1949-01-11 1945 1949 1 1 9 11
Washington Monrad Charles Wallgren Democratic 209 1945-01-10 1949-01-12 1945 1949 1 1 10 12
Iowa Robert Donald Blue Republican 209 1945-01-11 1949-01-13 1945 1949 1 1 11 13
West Virginia Clarence Watson Meadows Democratic 209 1945-01-15 1949-01-17 1945 1949 1 1 15 17
Tennessee Jim Nance McCord Democratic 209 1945-01-16 1949-01-16 1945 1949 1 1 16 16
Nevada Vail Montgomery Pittman Democratic 284 1945-07-24 1951-01-01 1945 1951 7 1 24 1
Rhode Island John Orlando Pastore Democratic 271 1945-10-06 1950-12-19 1945 1950 10 12 6 19
Idaho Arnold Williams Democratic 59 1945-11-17 1947-01-06 1945 1947 11 1 17 6
Virginia William Munford Tuck Democratic 209 1946-01-15 1950-01-17 1946 1950 1 1 15 17
Mississippi Fielding Lewis Wright Democratic 272 1946-11-02 1952-01-22 1946 1952 11 1 2 22
Connecticut Charles Wilbert Snow Democratic 2 1946-12-27 1947-01-08 1946 1947 12 1 27 8
Michigan Kimber Cornellus Sigler Republican 104 1947-01-01 1949-01-01 1947 1949 1 1 1 1
New Mexico Thomas Jewett Mabry Democratic 209 1947-01-01 1951-01-01 1947 1951 1 1 1 1
Massachusetts Robert Fiske Bradford Republican 105 1947-01-02 1949-01-06 1947 1949 1 1 2 6
Pennsylvania John Cromwell Bell Jr.  Republican 3 1947-01-02 1947-01-21 1947 1947 1 1 2 21
Maryland William Preston Lane Jr.  Democratic 210 1947-01-03 1951-01-10 1947 1951 1 1 3 10
Idaho Charles Armington Robins Republican 208 1947-01-06 1951-01-01 1947 1951 1 1 6 1
South Dakota George Theodore Mickelson Republican 208 1947-01-07 1951-01-02 1947 1951 1 1 7 2
Connecticut James Lukens McConaughy Republican 61 1947-01-08 1948-03-07 1947 1948 1 3 8 7
Minnesota Luther Wallace Youngdahl Republican 246 1947-01-08 1951-09-27 1947 1951 1 9 8 27
Nebraska Frederick Valdemar Erastus Peterson Republican 313 1947-01-09 1953-01-08 1947 1953 1 1 9 8
Vermont Ernest William Gibson Jr.  Republican 158 1947-01-09 1950-01-16 1947 1950 1 1 9 16
Colorado William Lee Knous Democratic 170 1947-01-13 1950-04-15 1947 1950 1 4 13 15
Kansas Frank Carlson Republican 202 1947-01-13 1950-11-28 1947 1950 1 11 13 28
Ohio Thomas John Herbert Republican 104 1947-01-13 1949-01-10 1947 1949 1 1 13 10
Oklahoma Roy Joseph Turner Democratic 208 1947-01-13 1951-01-08 1947 1951 1 1 13 8
Alabama James Elisha Folsom Sr.  Democratic 208 1947-01-20 1951-01-15 1947 1951 1 1 20 15
New Jersey Alfred Eastlack Driscoll Republican 365 1947-01-21 1954-01-19 1947 1954 1 1 21 19
Pennsylvania James Henderson Duff Republican 208 1947-01-21 1951-01-16 1947 1951 1 1 21 16
South Carolina James Strom Thurmond Sr.  Democratic 208 1947-01-21 1951-01-16 1947 1951 1 1 21 16
Texas Beauford Halbert Jester Democratic 129 1947-01-21 1949-07-11 1947 1949 1 7 21 11
Wisconsin Oscar Rennebohm Republican 199 1947-03-12 1951-01-01 1947 1951 3 1 12 1
Georgia Melvin Ernest Thompson Democratic 87 1947-03-18 1948-11-17 1947 1948 3 11 18 17
Oregon John Hubert Hall Republican 63 1947-10-30 1949-01-10 1947 1949 10 1 30 10
Kentucky Earle Chester Clements Democratic 155 1947-12-09 1950-11-27 1947 1950 12 11 9 27
Connecticut James Coughlin Shannon Republican 43 1948-03-07 1949-01-05 1948 1949 3 1 7 5
Louisiana Earl Kemp Long Democratic 209 1948-05-11 1952-05-13 1948 1952 5 5 11 13
Arizona Dan Edward Garvey Democratic 136 1948-05-25 1951-01-01 1948 1951 5 1 25 1
Georgia Herman Eugene Talmadge Democratic 321 1948-11-17 1955-01-11 1948 1955 11 1 17 11
Michigan Gerhard Menne Williams Democratic 626 1949-01-01 1961-01-01 1949 1961 1 1 1 1
Montana John Woodrow Bonner Democratic 209 1949-01-03 1953-01-05 1949 1953 1 1 3 5
Utah Joseph Bracken Lee Republican 418 1949-01-03 1957-01-07 1949 1957 1 1 3 7
Wyoming Arthur Griswold Crane Republican 104 1949-01-03 1951-01-01 1949 1951 1 1 3 1
Florida Fuller Warren Democratic 209 1949-01-04 1953-01-06 1949 1953 1 1 4 6
Connecticut Chester Bliss Bowles Democratic 104 1949-01-05 1951-01-03 1949 1951 1 1 5 3
Maine Frederick George Payne Republican 207 1949-01-05 1952-12-24 1949 1952 1 12 5 24
Massachusetts Paul Andrew Dever Democratic 209 1949-01-06 1953-01-08 1949 1953 1 1 6 8
New Hampshire Llewelyn Sherman Adams Republican 208 1949-01-06 1953-01-01 1949 1953 1 1 6 1
North Carolina William Kerr Scott Democratic 209 1949-01-06 1953-01-08 1949 1953 1 1 6 8
Illinois Adlai Ewing Stevenson II Democratic 209 1949-01-10 1953-01-12 1949 1953 1 1 10 12
Indiana Henry Frederick Schricker Democratic 209 1949-01-10 1953-01-12 1949 1953 1 1 10 12
Missouri Forrest Smith Democratic 209 1949-01-10 1953-01-12 1949 1953 1 1 10 12
Ohio Frank John Lausche Democratic 416 1949-01-10 1957-01-03 1949 1957 1 1 10 3
Oregon James Douglas McKay Republican 207 1949-01-10 1952-12-27 1949 1952 1 12 10 27
Arkansas Sidney Sanders McMath Democratic 209 1949-01-11 1953-01-13 1949 1953 1 1 11 13
Washington Arthur Bernard Langlie Republican 418 1949-01-12 1957-01-16 1949 1957 1 1 12 16
Iowa William Shane Beardsley Republican 305 1949-01-13 1954-11-21 1949 1954 1 11 13 21
Tennessee Gordon Weaver Browning Democratic 209 1949-01-16 1953-01-15 1949 1953 1 1 16 15
West Virginia Okey Leonidas Patteson Democratic 209 1949-01-17 1953-01-19 1949 1953 1 1 17 19
Delaware Elbert Nostrand Carvel Democratic 209 1949-01-18 1953-01-20 1949 1953 1 1 18 20
Texas Robert Allan Shivers Democratic 392 1949-07-11 1957-01-15 1949 1957 7 1 11 15
Vermont Harold John Arthur Republican 50 1950-01-16 1951-01-04 1950 1951 1 1 16 4
Virginia John Stewart Battle Democratic 209 1950-01-17 1954-01-19 1950 1954 1 1 17 19
Colorado Walter Walford Johnson Democratic 38 1950-04-15 1951-01-09 1950 1951 4 1 15 9
Kentucky Lawrence Winchester Wetherby Democratic 263 1950-11-27 1955-12-13 1950 1955 11 12 27 13
Kansas Frank Leslie Hagaman Republican 6 1950-11-28 1951-01-08 1950 1951 11 1 28 8
Rhode Island John Sammon McKiernan Democratic 2 1950-12-19 1951-01-02 1950 1951 12 1 19 2
Arizona John Howard Pyle Republican 209 1951-01-01 1955-01-03 1951 1955 1 1 1 3
Idaho Leonard Beck Jordan Republican 209 1951-01-01 1955-01-03 1951 1955 1 1 1 3
Nevada Charles Hinton Russell Republican 418 1951-01-01 1959-01-05 1951 1959 1 1 1 5
New Mexico Edwin Leard Mechem Republican 209 1951-01-01 1955-01-01 1951 1955 1 1 1 1
Wisconsin Walter Jodok Kohler Jr.  Republican 314 1951-01-01 1957-01-07 1951 1957 1 1 1 7
Wyoming Frank Aloysius Barrett Republican 105 1951-01-01 1953-01-03 1951 1953 1 1 1 3
Rhode Island Dennis Joseph Roberts Democratic 418 1951-01-02 1959-01-06 1951 1959 1 1 2 6
South Dakota Sigurd Anderson Republican 209 1951-01-02 1955-01-04 1951 1955 1 1 2 4
Connecticut John Davis Lodge Republican 209 1951-01-03 1955-01-05 1951 1955 1 1 3 5
North Dakota Clarence Norman Brunsdale Republican 314 1951-01-03 1957-01-09 1951 1957 1 1 3 9
Vermont Lee Earl Emerson Republican 209 1951-01-04 1955-01-06 1951 1955 1 1 4 6
Kansas Edward Ferdinand Arn Republican 209 1951-01-08 1955-01-10 1951 1955 1 1 8 10
Oklahoma Johnston Murray Democratic 209 1951-01-08 1955-01-10 1951 1955 1 1 8 10
Colorado Daniel Isaac J. Thornton Republican 209 1951-01-09 1955-01-11 1951 1955 1 1 9 11
Maryland Theodore Roosevelt McKeldin Republican 418 1951-01-10 1959-01-14 1951 1959 1 1 10 14
Alabama Seth Gordon Persons Democratic 209 1951-01-15 1955-01-17 1951 1955 1 1 15 17
Pennsylvania John Sydney Fine Republican 209 1951-01-16 1955-01-18 1951 1955 1 1 16 18
South Carolina James Francis Byrnes Democratic 209 1951-01-16 1955-01-18 1951 1955 1 1 16 18
Minnesota Clyde Elmer Anderson Republican 171 1951-09-27 1955-01-05 1951 1955 9 1 27 5
Mississippi Hugh Lawson White Democratic 208 1952-01-22 1956-01-17 1952 1956 1 1 22 17
Louisiana Robert Floyd Kennon Sr.  Democratic 208 1952-05-13 1956-05-08 1952 1956 5 5 13 8
Maine Burton Melvin Cross Republican 2 1952-12-24 1953-01-06 1952 1953 12 1 24 6
Oregon Paul Linton Patterson Republican 162 1952-12-27 1956-02-01 1952 1956 12 2 27 1
New Hampshire Hugh Gregg Republican 105 1953-01-01 1955-01-06 1953 1955 1 1 1 6
Wyoming Clifford Joy Rogers Republican 104 1953-01-03 1955-01-03 1953 1955 1 1 3 3
Montana John Hugo Aronson Republican 417 1953-01-05 1961-01-02 1953 1961 1 1 5 2
Florida Daniel Thomas McCarty Democratic 38 1953-01-06 1953-09-28 1953 1953 1 9 6 28
Maine Nathaniel Mervin Haskell Republican 0 1953-01-06 1953-01-07 1953 1953 1 1 6 7
Maine Burton Melvin Cross Republican 104 1953-01-07 1955-01-05 1953 1955 1 1 7 5
Massachusetts Christian Archibald Herter Republican 208 1953-01-08 1957-01-03 1953 1957 1 1 8 3
Nebraska Robert Berkey Crosby Republican 104 1953-01-08 1955-01-06 1953 1955 1 1 8 6
North Carolina William Bradley Umstead Democratic 95 1953-01-08 1954-11-07 1953 1954 1 11 8 7
Illinois William Grant Stratton Republican 417 1953-01-12 1961-01-09 1953 1961 1 1 12 9
Indiana George North Craig Republican 209 1953-01-12 1957-01-14 1953 1957 1 1 12 14
Missouri Philip Matthew Donnelly Democratic 209 1953-01-12 1957-01-14 1953 1957 1 1 12 14
Arkansas Francis Adams Cherry Sr.  Democratic 104 1953-01-13 1955-01-11 1953 1955 1 1 13 11
Tennessee Frank Goad Clement Democratic 314 1953-01-15 1959-01-19 1953 1959 1 1 15 19
West Virginia William Casey Marland Democratic 208 1953-01-19 1957-01-14 1953 1957 1 1 19 14
Delaware James Caleb Boggs Republican 414 1953-01-20 1960-12-30 1953 1960 1 12 20 30
Florida Charley Eugene Johns Democratic 66 1953-09-28 1955-01-04 1953 1955 9 1 28 4
California Goodwin Jess Knight Republican 274 1953-10-05 1959-01-05 1953 1959 10 1 5 5
New Jersey Robert Baumle Meyner Democratic 417 1954-01-19 1962-01-16 1954 1962 1 1 19 16
Virginia Thomas Bahnson Stanley Democratic 208 1954-01-19 1958-01-11 1954 1958 1 1 19 11
North Carolina Luther Hartwell Hodges Democratic 322 1954-11-07 1961-01-05 1954 1961 11 1 7 5
Iowa Leo Elthon Republican 8 1954-11-21 1955-01-13 1954 1955 11 1 21 13
New York William Averell Harriman Democratic 209 1954-12-31 1958-12-31 1954 1958 12 12 31 31
New Mexico John Field Simms Jr.  Democratic 104 1955-01-01 1957-01-01 1955 1957 1 1 1 1
Arizona Ernest McFarland Democratic 209 1955-01-03 1959-01-05 1955 1959 1 1 3 5
Idaho Robert Eben Smylie Republican 626 1955-01-03 1967-01-02 1955 1967 1 1 3 2
Wyoming Milward Lee Simpson Republican 209 1955-01-03 1959-01-05 1955 1959 1 1 3 5
Florida Thomas LeRoy Collins Democratic 313 1955-01-04 1961-01-03 1955 1961 1 1 4 3
South Dakota Joseph Jacob Foss Republican 209 1955-01-04 1959-01-06 1955 1959 1 1 4 6
Connecticut Abraham Alexander Ribicoff Democratic 315 1955-01-05 1961-01-21 1955 1961 1 1 5 21
Maine Edmund Sixtus Muskie Democratic 208 1955-01-05 1959-01-02 1955 1959 1 1 5 2
Minnesota Orville Lothrop Freeman Democratic 313 1955-01-05 1961-01-02 1955 1961 1 1 5 2
Nebraska Victor Emanuel Anderson Republican 209 1955-01-06 1959-01-08 1955 1959 1 1 6 8
New Hampshire Seymour Lane Dwinell Republican 208 1955-01-06 1959-01-01 1955 1959 1 1 6 1
Vermont Joseph Blaine Johnson Republican 209 1955-01-06 1959-01-08 1955 1959 1 1 6 8
Kansas Frederick Lee Hall Republican 103 1955-01-10 1957-01-03 1955 1957 1 1 10 3
Oklahoma Raymond Dancel Gary Democratic 209 1955-01-10 1959-01-12 1955 1959 1 1 10 12
Arkansas Orval Eugene Faubus Democratic 626 1955-01-11 1967-01-10 1955 1967 1 1 11 10
Colorado Edwin Carl Johnson Democratic 104 1955-01-11 1957-01-08 1955 1957 1 1 11 8
Georgia Samuel Marvin Griffin Sr.  Democratic 209 1955-01-11 1959-01-13 1955 1959 1 1 11 13
Iowa Leo Arthur Hoegh Republican 105 1955-01-13 1957-01-17 1955 1957 1 1 13 17
Alabama James Elisha Folsom Sr.  Democratic 209 1955-01-17 1959-01-19 1955 1959 1 1 17 19
Pennsylvania George Michael Leader Democratic 209 1955-01-18 1959-01-20 1955 1959 1 1 18 20
South Carolina George Bell Timmerman Jr.  Democratic 208 1955-01-18 1959-01-15 1955 1959 1 1 18 15
Kentucky Albert Benjamin Chandler Sr.  Democratic 208 1955-12-13 1959-12-08 1955 1959 12 12 13 8
Mississippi James Plemon Coleman Democratic 209 1956-01-17 1960-01-19 1956 1960 1 1 17 19
Oregon Elmo Everett Smith Republican 50 1956-02-01 1957-01-14 1956 1957 2 1 1 14
Louisiana Earl Kemp Long Democratic 209 1956-05-08 1960-05-10 1956 1960 5 5 8 10
New Mexico Edwin Leard Mechem Republican 104 1957-01-01 1959-01-01 1957 1959 1 1 1 1
Kansas John Berridge McCuish Republican 2 1957-01-03 1957-01-14 1957 1957 1 1 3 14
Massachusetts John Foster Furcolo Democratic 209 1957-01-03 1961-01-05 1957 1961 1 1 3 5
Ohio John William Brown Republican 2 1957-01-03 1957-01-14 1957 1957 1 1 3 14
Utah George Dewey Clyde Republican 417 1957-01-07 1965-01-04 1957 1965 1 1 7 4
Wisconsin Vernon Wallace Thomson Republican 104 1957-01-07 1959-01-05 1957 1959 1 1 7 5
Colorado Stephen Lucid Robert McNichols Democratic 313 1957-01-08 1963-01-08 1957 1963 1 1 8 8
North Dakota John E. Davis Republican 208 1957-01-09 1961-01-04 1957 1961 1 1 9 4
Indiana Harold Willis Handley Republican 208 1957-01-14 1961-01-09 1957 1961 1 1 14 9
Kansas George Docking Democratic 208 1957-01-14 1961-01-09 1957 1961 1 1 14 9
Missouri James Thomas Blair Jr.  Democratic 208 1957-01-14 1961-01-09 1957 1961 1 1 14 9
Ohio C. William O’Neill Republican 104 1957-01-14 1959-01-12 1957 1959 1 1 14 12
Oregon Robert Denison Holmes Democratic 104 1957-01-14 1959-01-12 1957 1959 1 1 14 12
West Virginia Cecil Harland Underwood Republican 209 1957-01-14 1961-01-16 1957 1961 1 1 14 16
Texas Marion Price Daniel Sr.  Democratic 313 1957-01-15 1963-01-15 1957 1963 1 1 15 15
Washington Albert Dean Rosellini Democratic 417 1957-01-16 1965-01-13 1957 1965 1 1 16 13
Iowa Herschel Cellel Loveless Democratic 208 1957-01-17 1961-01-12 1957 1961 1 1 17 12
Delaware Charles Layman Terry Jr.  Democratic 626 1957-01-19 1969-01-21 1957 1969 1 1 19 21
Virginia James Lindsay Almond Jr.  Democratic 209 1958-01-11 1962-01-13 1958 1962 1 1 11 13
New York Nelson Aldrich Rockefeller Republican 781 1958-12-31 1973-12-18 1958 1973 12 12 31 18
New Hampshire Wesley Powell Republican 209 1959-01-01 1963-01-03 1959 1963 1 1 1 3
New Mexico John Burroughs Democratic 104 1959-01-01 1961-01-01 1959 1961 1 1 1 1
Maine Robert Nance Haskell Republican 1 1959-01-02 1959-01-07 1959 1959 1 1 2 7
Alaska William Allen Egan Democratic 413 1959-01-03 1966-12-05 1959 1966 1 12 3 5
Arizona Paul Fannin Republican 313 1959-01-05 1965-01-04 1959 1965 1 1 5 4
California Edmund Gerald Brown Democratic 417 1959-01-05 1967-01-02 1959 1967 1 1 5 2
Nevada Frank Grant Sawyer Democratic 417 1959-01-05 1967-01-02 1959 1967 1 1 5 2
Wisconsin Gaylord Anton Nelson Democratic 209 1959-01-05 1963-01-07 1959 1963 1 1 5 7
Wyoming John Joseph Hickey Democratic 104 1959-01-05 1961-01-02 1959 1961 1 1 5 2
Rhode Island Christopher Del Sesto Republican 104 1959-01-06 1961-01-03 1959 1961 1 1 6 3
South Dakota Ralph Edmund Herseth Democratic 104 1959-01-06 1961-01-03 1959 1961 1 1 6 3
Maine Clinton Amos Clauson Democratic 51 1959-01-07 1959-12-30 1959 1959 1 12 7 30
Nebraska Ralph Gilmour Brooks Democratic 87 1959-01-08 1960-09-09 1959 1960 1 9 8 9
Vermont Robert Theodore Stafford Republican 104 1959-01-08 1961-01-05 1959 1961 1 1 8 5
Ohio Michael Vincent DiSalle Democratic 209 1959-01-12 1963-01-14 1959 1963 1 1 12 14
Oklahoma James Howard Edmondson Democratic 208 1959-01-12 1963-01-06 1959 1963 1 1 12 6
Oregon Mark Odom Hatfield Republican 417 1959-01-12 1967-01-09 1959 1967 1 1 12 9
Georgia Ernest Vandiver Jr.  Democratic 209 1959-01-13 1963-01-15 1959 1963 1 1 13 15
Maryland John Millard Tawes Democratic 419 1959-01-14 1967-01-25 1959 1967 1 1 14 25
South Carolina Ernest Frederick Hollings Democratic 209 1959-01-15 1963-01-15 1959 1963 1 1 15 15
Alabama John Malcolm Patterson Democratic 208 1959-01-19 1963-01-14 1959 1963 1 1 19 14
Tennessee Earl Buford Ellingtron Democratic 208 1959-01-19 1963-01-15 1959 1963 1 1 19 15
Pennsylvania David Leo Lawrence Democratic 208 1959-01-20 1963-01-15 1959 1963 1 1 20 15
Hawaii William Francis Quinn Republican 171 1959-08-21 1962-12-03 1959 1962 8 12 21 3
Kentucky Bertram Thomas Combs Democratic 209 1959-12-08 1963-12-10 1959 1963 12 12 8 10
Maine John Hathaway Reed Republican 366 1959-12-30 1967-01-05 1959 1967 12 1 30 5
Mississippi Ross Robert Barnett Democratic 209 1960-01-19 1964-01-21 1960 1964 1 1 19 21
Louisiana James Houston Davis Democratic 209 1960-05-10 1964-05-12 1960 1964 5 5 10 12
Nebraska Dwight Willard Burney Republican 17 1960-09-09 1961-01-05 1960 1961 9 1 9 5
Delaware David Penrose Buckson Republican 3 1960-12-30 1961-01-17 1960 1961 12 1 30 17
Michigan John Burley Swainson Democratic 104 1961-01-01 1963-01-01 1961 1963 1 1 1 1
New Mexico Edwin Leard Mechem Republican 100 1961-01-01 1962-11-30 1961 1962 1 11 1 30
Minnesota Elmer Lee Andersen Republican 116 1961-01-02 1963-03-25 1961 1963 1 3 2 25
Montana Donald Grant Nutter Republican 55 1961-01-02 1962-01-25 1961 1962 1 1 2 25
Wyoming Jack Robert Gage Democratic 105 1961-01-02 1963-01-07 1961 1963 1 1 2 7
Florida Cecil Farris Bryant Democratic 209 1961-01-03 1965-01-05 1961 1965 1 1 3 5
Rhode Island John Anthony Notte Jr.  Democratic 104 1961-01-03 1963-01-01 1961 1963 1 1 3 1
South Dakota Archibald Maxwell Gubbrud Republican 209 1961-01-03 1965-01-05 1961 1965 1 1 3 5
North Dakota William Lewis Guy Democratic 626 1961-01-04 1973-01-02 1961 1973 1 1 4 2
Massachusetts John Anthony Volpe Republican 104 1961-01-05 1963-01-03 1961 1963 1 1 5 3
Nebraska Frank Brenner Morrison Democratic 313 1961-01-05 1967-01-05 1961 1967 1 1 5 5
North Carolina James Terry Sanford Democratic 209 1961-01-05 1965-01-08 1961 1965 1 1 5 8
Vermont Frank Ray Keyser Jr.  Republican 105 1961-01-05 1963-01-10 1961 1963 1 1 5 10
Illinois Otto Kerner Jr.  Democratic 384 1961-01-09 1968-05-21 1961 1968 1 5 9 21
Indiana Matthew Empson Welsh Democratic 209 1961-01-09 1965-01-11 1961 1965 1 1 9 11
Kansas John Anderson Jr.  Republican 209 1961-01-09 1965-01-11 1961 1965 1 1 9 11
Missouri John Montgomery Dalton Democratic 209 1961-01-09 1965-01-11 1961 1965 1 1 9 11
Iowa Norman Arthur Erbe Republican 105 1961-01-12 1963-01-17 1961 1963 1 1 12 17
West Virginia William Wallace Barron Democratic 209 1961-01-16 1965-01-18 1961 1965 1 1 16 18
Delaware Elbert Nostrand Carvel Democratic 209 1961-01-17 1965-01-19 1961 1965 1 1 17 19
Connecticut John Noel Dempsey Democratic 520 1961-01-21 1971-01-06 1961 1971 1 1 21 6
Virginia Albertis Sydney Harrison Jr.  Democratic 209 1962-01-13 1966-01-15 1962 1966 1 1 13 15
New Jersey Richard Joseph Hughes Democratic 418 1962-01-16 1970-01-20 1962 1970 1 1 16 20
Montana Timothy Milford Babcock Republican 363 1962-01-25 1969-01-06 1962 1969 1 1 25 6
New Mexico Thomas Felix Bolack Republican 5 1962-11-30 1963-01-01 1962 1963 11 1 30 1
Hawaii John Anthony Burns Democratic 626 1962-12-03 1974-12-02 1962 1974 12 12 3 2
Michigan George Wilcken Romney Republican 316 1963-01-01 1969-01-22 1963 1969 1 1 1 22
New Mexico Jack Moren Campbell Democratic 209 1963-01-01 1967-01-01 1963 1967 1 1 1 1
Rhode Island John Lester Hubbard Chafee Republican 314 1963-01-01 1969-01-07 1963 1969 1 1 1 7
Massachusetts Endicott Peabody Democratic 105 1963-01-03 1965-01-07 1963 1965 1 1 3 7
New Hampshire John William King Democratic 313 1963-01-03 1969-01-02 1963 1969 1 1 3 2
Oklahoma George Patterson Nigh Democratic 1 1963-01-06 1963-01-14 1963 1963 1 1 6 14
Wisconsin John Whitcome Reynolds Jr.  Democratic 104 1963-01-07 1965-01-04 1963 1965 1 1 7 4
Wyoming Clifford Peter Hansen Republican 208 1963-01-07 1967-01-02 1963 1967 1 1 7 2
Colorado John Arthur Love Republican 549 1963-01-08 1973-07-16 1963 1973 1 7 8 16
Vermont Philip Henderson Hoff Democratic 313 1963-01-10 1969-01-09 1963 1969 1 1 10 9
Alabama George Corley Wallace Jr.  Democratic 209 1963-01-14 1967-01-16 1963 1967 1 1 14 16
Ohio James Allen Rhodes Republican 417 1963-01-14 1971-01-11 1963 1971 1 1 14 11
Oklahoma Henry Louis Bellmon Republican 208 1963-01-14 1967-01-09 1963 1967 1 1 14 9
Georgia Carl Edward Sanders Sr.  Democratic 208 1963-01-15 1967-01-11 1963 1967 1 1 15 11
Pennsylvania William Warren Scranton Republican 209 1963-01-15 1967-01-17 1963 1967 1 1 15 17
South Carolina Donald Stuart Russell Democratic 118 1963-01-15 1965-04-22 1963 1965 1 4 15 22
Tennessee Frank Goad Clement Democratic 209 1963-01-15 1967-01-16 1963 1967 1 1 15 16
Texas John Bowden Connally Jr.  Democratic 314 1963-01-15 1969-01-21 1963 1969 1 1 15 21
Iowa Harold Everett Hughes Democratic 311 1963-01-17 1969-01-01 1963 1969 1 1 17 1
Minnesota Karl Fritjof Rolvaag Democratic 197 1963-03-25 1967-01-02 1963 1967 3 1 25 2
Kentucky Edward Thompson Breathitt Jr.  Democratic 209 1963-12-10 1967-12-12 1963 1967 12 12 10 12
Mississippi Paul Burney Johnson Jr.  Democratic 208 1964-01-21 1968-01-16 1964 1968 1 1 21 16
Louisiana John Julian McKeithen Democratic 417 1964-05-12 1972-05-09 1964 1972 5 5 12 9
Arizona Samula Pearson Goddard Jr.  Democratic 104 1965-01-04 1967-01-02 1965 1967 1 1 4 2
Utah Calvin Lewellyn Rampton Democratic 626 1965-01-04 1977-01-03 1965 1977 1 1 4 3
Wisconsin Warren Perley Knowles Republican 313 1965-01-04 1971-01-04 1965 1971 1 1 4 4
Florida William Haydon Burns Democratic 104 1965-01-05 1967-01-03 1965 1967 1 1 5 3
South Dakota Nils Andreas Boe Republican 209 1965-01-05 1969-01-07 1965 1969 1 1 5 7
Massachusetts John Anthony Volpe Republican 211 1965-01-07 1969-01-22 1965 1969 1 1 7 22
North Carolina Daniel Killian Moore Democratic 208 1965-01-08 1969-01-03 1965 1969 1 1 8 3
Indiana Roger Douglas Branigin Democratic 209 1965-01-11 1969-01-13 1965 1969 1 1 11 13
Kansas William Henry Avery Republican 104 1965-01-11 1967-01-09 1965 1967 1 1 11 9
Missouri Warren Eastman Hearnes Democratic 417 1965-01-11 1973-01-08 1965 1973 1 1 11 8
Washington Daniel Jackson Evans Republican 626 1965-01-13 1977-01-12 1965 1977 1 1 13 12
West Virginia Hulett Carlson Smith Democratic 208 1965-01-18 1969-01-13 1965 1969 1 1 18 13
South Carolina Robert Evander McNair Sr.  Democratic 300 1965-04-22 1971-01-19 1965 1971 4 1 22 19
Virginia Mills Edwin Godwin Jr.  Democratic 209 1966-01-15 1970-01-17 1966 1970 1 1 15 17
Alaska Walter Joseph Hickel Republican 112 1966-12-05 1969-01-29 1966 1969 12 1 5 29
New Mexico David Francis Cargo Republican 209 1967-01-01 1971-01-01 1967 1971 1 1 1 1
Arizona Jack Williams Republican 418 1967-01-02 1975-01-06 1967 1975 1 1 2 6
California Ronald Wilson Reagan Republican 418 1967-01-02 1975-01-06 1967 1975 1 1 2 6
Idaho Donald William Samuelson Republican 209 1967-01-02 1971-01-04 1967 1971 1 1 2 4
Minnesota Karl Harold Phillip Levander Republican 209 1967-01-02 1971-01-04 1967 1971 1 1 2 4
Nevada Paul Dominique Laxalt Republican 209 1967-01-02 1971-01-04 1967 1971 1 1 2 4
Wyoming Stanley Knapp Hathaway Republican 418 1967-01-02 1975-01-06 1967 1975 1 1 2 6
Florida Claude Roy Kirk Jr.  Republican 209 1967-01-03 1971-01-05 1967 1971 1 1 3 5
Maine Kenneth Merwin Curtis Democratic 417 1967-01-05 1975-01-02 1967 1975 1 1 5 2
Nebraska Norbert Theodore Tiemann Republican 209 1967-01-05 1971-01-07 1967 1971 1 1 5 7
Kansas Robert Blackwell Docking Democratic 418 1967-01-09 1975-01-13 1967 1975 1 1 9 13
Oklahoma Dewey Follett Bartlett Sr.  Republican 209 1967-01-09 1971-01-11 1967 1971 1 1 9 11
Oregon Thomas Lawson McCall Republican 418 1967-01-09 1975-01-13 1967 1975 1 1 9 13
Arkansas Winthrop Rockefeller Republican 209 1967-01-10 1971-01-12 1967 1971 1 1 10 12
Georgia Lester Garfield Maddox Sr.  Democratic 209 1967-01-11 1971-01-12 1967 1971 1 1 11 12
Alabama Lurleen Burns Wallace Democratic 68 1967-01-16 1968-05-07 1967 1968 1 5 16 7
Tennessee Earl Buford Ellingtron Democratic 209 1967-01-16 1971-01-16 1967 1971 1 1 16 16
Pennsylvania Raymond Philip Shafer Republican 209 1967-01-17 1971-01-19 1967 1971 1 1 17 19
Maryland Spiro Theodore Agnew Republican 102 1967-01-25 1969-01-07 1967 1969 1 1 25 7
Kentucky Louie Broady Nunn Republican 208 1967-12-12 1971-12-07 1967 1971 12 12 12 7
Mississippi John Bell Wiliams Democratic 209 1968-01-16 1972-01-18 1968 1972 1 1 16 18
Alabama Albert Brewer Democratic 141 1968-05-07 1971-01-18 1968 1971 5 1 7 18
Illinois Samuel Harvey Shapiro Democratic 34 1968-05-21 1969-01-13 1968 1969 5 1 21 13
Iowa Robert David Fulton Democratic 2 1969-01-01 1969-01-16 1969 1969 1 1 1 16
New Hampshire Walter Rutherford Peterson Jr.  Republican 209 1969-01-02 1973-01-04 1969 1973 1 1 2 4
North Carolina Robert Walter Scott Democratic 209 1969-01-03 1973-01-05 1969 1973 1 1 3 5
Montana Forrest Howard Anderson Democratic 208 1969-01-06 1973-01-01 1969 1973 1 1 6 1
Maryland Marvin Mandel Democratic 523 1969-01-07 1979-01-17 1969 1979 1 1 7 17
Rhode Island Frank R. Licht Democratic 208 1969-01-07 1973-01-02 1969 1973 1 1 7 2
South Dakota Frank Leroy Farrar Republican 104 1969-01-07 1971-01-05 1969 1971 1 1 7 5
Vermont Deane Chandler Davis Republican 208 1969-01-09 1973-01-04 1969 1973 1 1 9 4
Illinois Richard Buell Ogilvie Republican 208 1969-01-13 1973-01-08 1969 1973 1 1 13 8
Indiana Edgar Doud Whitcomb Republican 208 1969-01-13 1973-01-08 1969 1973 1 1 13 8
West Virginia Arch Alfred Moore Jr.  Republican 418 1969-01-13 1977-01-17 1969 1977 1 1 13 17
Iowa Robert Dolph Ray Republican 730 1969-01-16 1983-01-14 1969 1983 1 1 16 14
Delaware Russell Willbur Peterson Republican 208 1969-01-21 1973-01-16 1969 1973 1 1 21 16
Texas Preston Earnest Smith Democratic 208 1969-01-21 1973-01-16 1969 1973 1 1 21 16
Massachusetts Francis Williams Sargent Republican 310 1969-01-22 1975-01-02 1969 1975 1 1 22 2
Michigan William Grawn Milliken Republican 727 1969-01-22 1983-01-01 1969 1983 1 1 22 1
Alaska Kieth Harvey Miller Republican 97 1969-01-29 1970-12-07 1969 1970 1 12 29 7
Virginia Abner Linwood Holton Jr.  Republican 208 1970-01-17 1974-01-12 1970 1974 1 1 17 12
New Jersey William Thomas Cahill Republican 208 1970-01-20 1974-01-15 1970 1974 1 1 20 15
Alaska William Allen Egan Democratic 208 1970-12-07 1974-12-02 1970 1974 12 12 7 2
New Mexico Bruce King Democratic 209 1971-01-01 1975-01-01 1971 1975 1 1 1 1
Idaho Cecil Dale Andrus Democratic 316 1971-01-04 1977-01-24 1971 1977 1 1 4 24
Minnesota Wendell Richard Anderson Democratic 312 1971-01-04 1976-12-29 1971 1976 1 12 4 29
Nevada Donal Neil O’Callaghan Democratic 417 1971-01-04 1979-01-01 1971 1979 1 1 4 1
Wisconsin Patrick Joseph Lucey Democratic 339 1971-01-04 1977-07-06 1971 1977 1 7 4 6
Florida Reubin O’Donovan Askew Democratic 417 1971-01-05 1979-01-02 1971 1979 1 1 5 2
South Dakota Richard Francis Kneip Democratic 394 1971-01-05 1978-07-24 1971 1978 1 7 5 24
Connecticut Thomas Joseph Meskill Jr.  Republican 209 1971-01-06 1975-01-08 1971 1975 1 1 6 8
Nebraska John James Exon Democratic 417 1971-01-07 1979-01-04 1971 1979 1 1 7 4
Ohio John Joyce Gilligan Democratic 209 1971-01-11 1975-01-13 1971 1975 1 1 11 13
Oklahoma David Hall Democratic 209 1971-01-11 1975-01-13 1971 1975 1 1 11 13
Arkansas Dale Leon Bumpers Democratic 207 1971-01-12 1975-01-03 1971 1975 1 1 12 3
Georgia James Earl Carter Jr.  Democratic 209 1971-01-12 1975-01-14 1971 1975 1 1 12 14
Tennessee Bryant Winfield Culberson Dunn Republican 209 1971-01-16 1975-01-18 1971 1975 1 1 16 18
Alabama George Corley Wallace Jr.  Democratic 417 1971-01-18 1979-01-15 1971 1979 1 1 18 15
Pennsylvania Milton Jerold Shapp Democratic 417 1971-01-19 1979-01-16 1971 1979 1 1 19 16
South Carolina John Carl West Sr.  Democratic 209 1971-01-19 1975-01-21 1971 1975 1 1 19 21
Kentucky Wendell Hampton Ford Democratic 160 1971-12-07 1974-12-28 1971 1974 12 12 7 28
Mississippi William Lowe Waller Sr.  Democratic 209 1972-01-18 1976-01-20 1972 1976 1 1 18 20
Louisiana Edwin Washington Edwards Democratic 409 1972-05-09 1980-03-10 1972 1980 5 3 9 10
Montana Thomas Lee Judge Democratic 418 1973-01-01 1981-01-05 1973 1981 1 1 1 5
North Dakota Arthur Albert Link Democratic 418 1973-01-02 1981-01-06 1973 1981 1 1 2 6
Rhode Island Philip William Noel Democratic 209 1973-01-02 1977-01-04 1973 1977 1 1 2 4
New Hampshire Meldrim Thomson Jr.  Republican 313 1973-01-04 1979-01-04 1973 1979 1 1 4 4
Vermont Thomas Paul Salmon Democratic 209 1973-01-04 1977-01-06 1973 1977 1 1 4 6
North Carolina James Eubert Holshouser Jr.  Republican 209 1973-01-05 1977-01-08 1973 1977 1 1 5 8
Illinois Daniel J. Walker Democratic 209 1973-01-08 1977-01-10 1973 1977 1 1 8 10
Indiana Otis Ray Bowen Republican 418 1973-01-08 1981-01-12 1973 1981 1 1 8 12
Missouri Christopher Samuel Bond Republican 209 1973-01-08 1977-01-10 1973 1977 1 1 8 10
Delaware Sherman Willard Tribbitt Democratic 209 1973-01-16 1977-01-18 1973 1977 1 1 16 18
Texas Dolph Briscoe Jr.  Democratic 313 1973-01-16 1979-01-16 1973 1979 1 1 16 16
Colorado John David Vanderhoof Republican 78 1973-07-16 1975-01-14 1973 1975 7 1 16 14
New York Charles Malcolm Wilson Republican 54 1973-12-18 1974-12-31 1973 1974 12 12 18 31
Virginia Mills Edwin Godwin Jr.  Republican 209 1974-01-12 1978-01-14 1974 1978 1 1 12 14
New Jersey Brendan Thomas Byrne Democratic 418 1974-01-15 1982-01-19 1974 1982 1 1 15 19
Alaska Jay Sterner Hammond Republican 418 1974-12-02 1982-12-06 1974 1982 12 12 2 6
Hawaii George Ryoichi Ariyoshi Democratic 626 1974-12-02 1986-12-01 1974 1986 12 12 2 1
Kentucky Julian Morton Carroll Democratic 258 1974-12-28 1979-12-11 1974 1979 12 12 28 11
New York Hugh Leo Carey Democratic 417 1974-12-31 1982-12-31 1974 1982 12 12 31 31
New Mexico Raymond S. Apodaca Democratic 209 1975-01-01 1979-01-01 1975 1979 1 1 1 1
Maine James Bernard Longley Sr.  Independent 209 1975-01-02 1979-01-03 1975 1979 1 1 2 3
Massachusetts Michael Stanley Dukakis Democratic 209 1975-01-02 1979-01-04 1975 1979 1 1 2 4
Arkansas Bob Cowley Riley Democratic 2 1975-01-03 1975-01-14 1975 1975 1 1 3 14
Arizona Raul Hector Castro Democratic 145 1975-01-06 1977-10-20 1975 1977 1 10 6 20
California Edmund Gerald Brown Jr.  Democratic 417 1975-01-06 1983-01-03 1975 1983 1 1 6 3
Wyoming Edgar Jacob Herschler Democratic 626 1975-01-06 1987-01-05 1975 1987 1 1 6 5
Connecticut Ellas Rosa Giovana Oliva Grasso Democratic 312 1975-01-08 1980-12-31 1975 1980 1 12 8 31
Kansas Robert Frederick Bennett Republican 208 1975-01-13 1979-01-08 1975 1979 1 1 13 8
Ohio James Allen Rhodes Republican 417 1975-01-13 1983-01-10 1975 1983 1 1 13 10
Oklahoma David Lyle Boren Democratic 208 1975-01-13 1979-01-08 1975 1979 1 1 13 8
Oregon Robert Wililam Straub Democratic 208 1975-01-13 1979-01-08 1975 1979 1 1 13 8
Arkansas David Hampton Pryor Democratic 207 1975-01-14 1979-01-03 1975 1979 1 1 14 3
Colorado Richard Douglas Lamm Democratic 626 1975-01-14 1987-01-13 1975 1987 1 1 14 13
Georgia George Dekle Busbee Sr.  Democratic 417 1975-01-14 1983-01-11 1975 1983 1 1 14 11
Tennessee Leonard Ray Blanton Democratic 209 1975-01-18 1979-01-17 1975 1979 1 1 18 17
South Carolina James Burrows Edwards Republican 207 1975-01-21 1979-01-10 1975 1979 1 1 21 10
Mississippi Charles Clifton Finch Democratic 209 1976-01-20 1980-01-22 1976 1980 1 1 20 22
Minnesota Rudolph George Perpich Sr.  Democratic 105 1976-12-29 1979-01-04 1976 1979 12 1 29 4
Utah Scott Milne Matheson Jr.  Democratic 418 1977-01-03 1985-01-07 1977 1985 1 1 3 7
Rhode Island John Joseph Garrahy Democratic 417 1977-01-04 1985-01-01 1977 1985 1 1 4 1
Vermont Richard Arkwright Snelling Republican 418 1977-01-06 1985-01-10 1977 1985 1 1 6 10
North Carolina James Baxter Hunt Jr.  Democratic 417 1977-01-08 1985-01-05 1977 1985 1 1 8 5
Illinois James Robert Thompson Jr.  Republican 731 1977-01-10 1991-01-14 1977 1991 1 1 10 14
Missouri Joseph Patrick Teasdale Democratic 209 1977-01-10 1981-01-12 1977 1981 1 1 10 12
Washington Dixy Lee Ray Democratic 209 1977-01-12 1981-01-14 1977 1981 1 1 12 14
West Virginia John Davison Rockefeller IV Democratic 417 1977-01-17 1985-01-14 1977 1985 1 1 17 14
Delaware Pierre Samuel du Pont IV Republican 417 1977-01-18 1985-01-15 1977 1985 1 1 18 15
Idaho John Victor Evans Sr.  Democratic 519 1977-01-24 1987-01-05 1977 1987 1 1 24 5
Maryland Francis Preston Blair Lee III Democratic 84 1977-06-04 1979-01-15 1977 1979 6 1 4 15
Wisconsin Martin James Schreiber Democratic 78 1977-07-06 1979-01-03 1977 1979 7 1 6 3
Arizona Wesley Bolin Democratic 19 1977-10-20 1978-03-04 1977 1978 10 3 20 4
Virginia John Nichols Dalton Republican 209 1978-01-14 1982-01-16 1978 1982 1 1 14 16
Arizona Bruce Edward Babbitt Democratic 461 1978-03-04 1987-01-05 1978 1987 3 1 4 5
South Dakota Harvey Lowell Wollman Democratic 23 1978-07-24 1979-01-01 1978 1979 7 1 24 1
Nevada Robert Frank List Republican 209 1979-01-01 1983-01-03 1979 1983 1 1 1 3
New Mexico Bruce King Democratic 209 1979-01-01 1983-01-01 1979 1983 1 1 1 1
South Dakota William John Janklow Republican 418 1979-01-01 1987-01-06 1979 1987 1 1 1 6
Florida Daniel Robert Graham Democratic 418 1979-01-02 1987-01-03 1979 1987 1 1 2 3
Arkansas Joe Edward Purcell Democratic 1 1979-01-03 1979-01-09 1979 1979 1 1 3 9
Maine Joseph Edward Brennan Democratic 418 1979-01-03 1987-01-07 1979 1987 1 1 3 7
Wisconsin Lee Sherman Dreyfus Republican 209 1979-01-03 1983-01-03 1979 1983 1 1 3 3
Massachusetts Edward Joseph King Democratic 209 1979-01-04 1983-01-06 1979 1983 1 1 4 6
Minnesota Albert Harold Quie Republican 209 1979-01-04 1983-01-03 1979 1983 1 1 4 3
Nebraska Charles Thone Republican 209 1979-01-04 1983-01-06 1979 1983 1 1 4 6
New Hampshire Hugh J. Gallen Democratic 208 1979-01-04 1982-12-29 1979 1982 1 12 4 29
Kansas John Willaim Carlin Democratic 418 1979-01-08 1987-01-12 1979 1987 1 1 8 12
Oklahoma George Patterson Nigh Democratic 418 1979-01-08 1987-01-12 1979 1987 1 1 8 12
Oregon Victor George Atiyeh Republican 418 1979-01-08 1987-01-12 1979 1987 1 1 8 12
Arkansas William Jefferson Clinton Democratic 106 1979-01-09 1981-01-19 1979 1981 1 1 9 19
South Carolina Richard Wilson Riley Democratic 418 1979-01-10 1987-01-13 1979 1987 1 1 10 13
Alabama Forrest Hood James Jr.  Democratic 209 1979-01-15 1983-01-17 1979 1983 1 1 15 17
Maryland Harry Roe Hughes Democratic 418 1979-01-15 1987-01-20 1979 1987 1 1 15 20
Pennsylvania Richard Lewis Thornburgh Republican 418 1979-01-16 1987-01-20 1979 1987 1 1 16 20
Texas William Perry Clements Jr.  Republican 209 1979-01-16 1983-01-18 1979 1983 1 1 16 18
Tennessee Andrew Lamar Alexander Jr.  Republican 417 1979-01-17 1987-01-17 1979 1987 1 1 17 17
Kentucky John Young Brown Jr.  Democratic 209 1979-12-11 1983-12-13 1979 1983 12 12 11 13
Mississippi William Forrest Winter Democratic 207 1980-01-22 1984-01-10 1980 1984 1 1 22 10
Louisiana David Conner Treen Sr.  Republican 209 1980-03-10 1984-03-12 1980 1984 3 3 10 12
Connecticut William Atchison O’Neill Democratic 523 1980-12-31 1991-01-09 1980 1991 12 1 31 9
Montana Theodore Schwinden Democratic 417 1981-01-05 1989-01-02 1981 1989 1 1 5 2
North Dakota Allen Ingvar Olson Republican 208 1981-01-06 1985-01-01 1981 1985 1 1 6 1
Indiana Robert Dunkerson Orr Republican 417 1981-01-12 1989-01-09 1981 1989 1 1 12 9
Missouri Christopher Samuel Bond Republican 209 1981-01-12 1985-01-14 1981 1985 1 1 12 14
Washington John Dennis Spellman Republican 209 1981-01-14 1985-01-16 1981 1985 1 1 14 16
Arkansas Frank Durward White Republican 103 1981-01-19 1983-01-11 1981 1983 1 1 19 11
Virginia Charles Spittal Robb Democratic 208 1982-01-16 1986-01-11 1982 1986 1 1 16 11
New Jersey Thomas Howard Kean Republican 417 1982-01-19 1990-01-16 1982 1990 1 1 19 16
Alaska William Jennings Sheffield Jr.  Democratic 208 1982-12-06 1986-12-01 1982 1986 12 12 6 1
New Hampshire Vesta M. Roy Republican 1 1982-12-29 1983-01-06 1982 1983 12 1 29 6
New York Mario Matthew Cuomo Democratic 626 1982-12-31 1994-12-31 1982 1994 12 12 31 31
Michigan James Johnston Blanchard Democratic 417 1983-01-01 1991-01-01 1983 1991 1 1 1 1
New Mexico Toney Anaya Democratic 209 1983-01-01 1987-01-01 1983 1987 1 1 1 1
California Courken George Deukmejian Jr.  Republican 418 1983-01-03 1991-01-07 1983 1991 1 1 3 7
Minnesota Rudolph George Perpich Sr.  Democratic 418 1983-01-03 1991-01-07 1983 1991 1 1 3 7
Nevada Richard Hudson Bryan Democratic 313 1983-01-03 1989-01-03 1983 1989 1 1 3 3
Wisconsin Anthony Scully Earl Democratic 209 1983-01-03 1987-01-05 1983 1987 1 1 3 5
Massachusetts Michael Stanley Dukakis Democratic 417 1983-01-06 1991-01-03 1983 1991 1 1 6 3
Nebraska Joseph Robert Kerrey Democratic 209 1983-01-06 1987-01-09 1983 1987 1 1 6 9
New Hampshire John Henry Sununu Republican 313 1983-01-06 1989-01-04 1983 1989 1 1 6 4
Ohio Richard Frank Celeste Democratic 418 1983-01-10 1991-01-14 1983 1991 1 1 10 14
Arkansas William Jefferson Clinton Democratic 518 1983-01-11 1992-12-12 1983 1992 1 12 11 12
Georgia Joe Frank Harris Democratic 418 1983-01-11 1991-01-14 1983 1991 1 1 11 14
Iowa Terry Edward Branstad Republican 835 1983-01-14 1999-01-15 1983 1999 1 1 14 15
Alabama George Corley Wallace Jr.  Democratic 209 1983-01-17 1987-01-19 1983 1987 1 1 17 19
Texas Mark Wells White Jr.  Democratic 209 1983-01-18 1987-01-20 1983 1987 1 1 18 20
Kentucky Martha Layne Collins Democratic 208 1983-12-13 1987-12-08 1983 1987 12 12 13 8
Mississippi William Alexander Allain Democratic 209 1984-01-10 1988-01-12 1984 1988 1 1 10 12
Louisiana Edwin Washington Edwards Democratic 209 1984-03-12 1988-03-14 1984 1988 3 3 12 14
North Dakota George Albert Sinner Democratic 415 1985-01-01 1992-12-15 1985 1992 1 12 1 15
Rhode Island Edward Daniel DiPrete Republican 313 1985-01-01 1991-01-01 1985 1991 1 1 1 1
North Carolina James Grubbs Martin Republican 418 1985-01-05 1993-01-09 1985 1993 1 1 5 9
Utah Norman Howard Bangerter Republican 417 1985-01-07 1993-01-04 1985 1993 1 1 7 4
Vermont Madeleine May Kunin Democratic 313 1985-01-10 1991-01-10 1985 1991 1 1 10 10
Missouri John David Ashcroft Republican 417 1985-01-14 1993-01-11 1985 1993 1 1 14 11
West Virginia Arch Alfred Moore Jr.  Republican 209 1985-01-14 1989-01-16 1985 1989 1 1 14 16
Delaware Michael Newbold Castle Republican 415 1985-01-15 1992-12-31 1985 1992 1 12 15 31
Washington William Booth Gardner Democratic 417 1985-01-16 1993-01-13 1985 1993 1 1 16 13
Virginia Gerald Lee Baliles Democratic 209 1986-01-11 1990-01-13 1986 1990 1 1 11 13
Alaska Stephen Cambreleng Cowper Democratic 209 1986-12-01 1990-12-03 1986 1990 12 12 1 3
Hawaii John David Waihe’e III Democratic 418 1986-12-01 1994-12-05 1986 1994 12 12 1 5
New Mexico Garrey Edwawrd Carruthers Republican 209 1987-01-01 1991-01-01 1987 1991 1 1 1 1
Florida John Wayne Mixson Democratic 0 1987-01-03 1987-01-06 1987 1987 1 1 3 6
Arizona Evan Mecham Republican 65 1987-01-05 1988-04-04 1987 1988 1 4 5 4
Idaho Cecil Dale Andrus Democratic 417 1987-01-05 1995-01-02 1987 1995 1 1 5 2
Wisconsin Tommy George Thompson Republican 734 1987-01-05 2001-02-01 1987 2001 1 2 5 1
Wyoming Michael John Sullivan Democratic 417 1987-01-05 1995-01-02 1987 1995 1 1 5 2
Florida Robert Martinez Republican 209 1987-01-06 1991-01-08 1987 1991 1 1 6 8
South Dakota George Speaker Mickelson Republican 328 1987-01-06 1993-04-19 1987 1993 1 4 6 19
Maine John Rettie McKernan Jr.  Republican 417 1987-01-07 1995-01-05 1987 1995 1 1 7 5
Nebraska Kay Avonne Orr Republican 209 1987-01-09 1991-01-09 1987 1991 1 1 9 9
Kansas John Michael Hayden Republican 209 1987-01-12 1991-01-14 1987 1991 1 1 12 14
Oklahoma Henry Louis Bellmon Republican 209 1987-01-12 1991-01-14 1987 1991 1 1 12 14
Oregon Niel Edward Goldschmidt Democratic 209 1987-01-12 1991-01-14 1987 1991 1 1 12 14
Colorado Roy Rudolf Romer Democratic 626 1987-01-13 1999-01-12 1987 1999 1 1 13 12
South Carolina Carroll Ashmore Campbell Jr.  Republican 417 1987-01-13 1995-01-11 1987 1995 1 1 13 11
Tennessee Ned Ray McWherter Democratic 418 1987-01-17 1995-01-21 1987 1995 1 1 17 21
Alabama Harold Guy Hunt Republican 326 1987-01-19 1993-04-22 1987 1993 1 4 19 22
Maryland William Donald Schaefer Democratic 417 1987-01-20 1995-01-18 1987 1995 1 1 20 18
Pennsylvania Robert Patrick Casey Sr.  Democratic 417 1987-01-20 1995-01-17 1987 1995 1 1 20 17
Texas William Perry Clements Jr.  Republican 208 1987-01-20 1991-01-15 1987 1991 1 1 20 15
Kentucky Wallace Glenn Wilkinson Democratic 209 1987-12-08 1991-12-10 1987 1991 12 12 8 10
Mississippi Raymond Edwin Mabus Jr.  Democratic 209 1988-01-12 1992-01-14 1988 1992 1 1 12 14
Louisiana Charles Elson Roemer III Democratic 200 1988-03-14 1992-01-13 1988 1992 3 1 14 13
Arizona Rose Perica Mafford Democratic 152 1988-04-04 1991-03-06 1988 1991 4 3 4 6
Montana Stanley Graham Stephens Republican 209 1989-01-02 1993-01-04 1989 1993 1 1 2 4
Nevada Robert Joseph Miller Democratic 522 1989-01-03 1999-01-04 1989 1999 1 1 3 4
New Hampshire Judd Alan Gregg Republican 208 1989-01-04 1993-01-02 1989 1993 1 1 4 2
Indiana Birch Evans Bayh III Democratic 418 1989-01-09 1997-01-13 1989 1997 1 1 9 13
West Virginia William Gaston Caperton III Democratic 417 1989-01-16 1997-01-13 1989 1997 1 1 16 13
Virginia Lawrence Douglas Wilder Democratic 209 1990-01-13 1994-01-15 1990 1994 1 1 13 15
New Jersey James Joseph Florio Democratic 209 1990-01-16 1994-01-18 1990 1994 1 1 16 18
Alaska Walter Joseph Hickel Alaskan Independence 209 1990-12-03 1994-12-05 1990 1994 12 12 3 5
Michigan John Mathias Engler Republican 626 1991-01-01 2003-01-01 1991 2003 1 1 1 1
New Mexico Bruce King Democratic 209 1991-01-01 1995-01-01 1991 1995 1 1 1 1
Rhode Island Bruce George Sundlun Democratic 209 1991-01-01 1995-01-03 1991 1995 1 1 1 3
Massachusetts William Floyd Weld Republican 343 1991-01-03 1997-07-29 1991 1997 1 7 3 29
California Peter Barton Wilson Republican 417 1991-01-07 1999-01-04 1991 1999 1 1 7 4
Minnesota Arne Helge Carlson Republican 417 1991-01-07 1999-01-04 1991 1999 1 1 7 4
Florida Lawton Mainor Chiles Jr.  Democratic 414 1991-01-08 1998-12-12 1991 1998 1 12 8 12
Connecticut Lowell Palmer Weicker Jr.  A Connecticut 208 1991-01-09 1995-01-04 1991 1995 1 1 9 4
Nebraska Earl Benjamin Nelson Democratic 417 1991-01-09 1999-01-07 1991 1999 1 1 9 7
Vermont Richard Arkwright Snelling Republican 31 1991-01-10 1991-08-13 1991 1991 1 8 10 13
Georgia Zell Bryan Miller Democratic 417 1991-01-14 1999-01-11 1991 1999 1 1 14 11
Illinois James Edgar Republican 417 1991-01-14 1999-01-11 1991 1999 1 1 14 11
Kansas Joan Marie Finney Democratic 208 1991-01-14 1995-01-09 1991 1995 1 1 14 9
Ohio George Victor Voinovich Republican 415 1991-01-14 1998-12-31 1991 1998 1 12 14 31
Oklahoma David Lee Walters Democratic 208 1991-01-14 1995-01-09 1991 1995 1 1 14 9
Oregon Barbara Kay Roberts Democratic 208 1991-01-14 1995-01-09 1991 1995 1 1 14 9
Texas Dorothy Ann Richards Democratic 209 1991-01-15 1995-01-17 1991 1995 1 1 15 17
Arizona John Fife Symington III Republican 339 1991-03-06 1997-09-05 1991 1997 3 9 6 5
Vermont Howard Brush Dean III Democratic 595 1991-08-13 2003-01-09 1991 2003 8 1 13 9
Kentucky Brereton Chandler Jones Democratic 209 1991-12-10 1995-12-12 1991 1995 12 12 10 12
Louisiana Edwin Washington Edwards Democratic 208 1992-01-13 1996-01-08 1992 1996 1 1 13 8
Mississippi Daniel Kirkwood Fordice Jr.  Republican 417 1992-01-14 2000-01-11 1992 2000 1 1 14 11
Arkansas James Guy Tucker Jr.  Democratic 187 1992-12-12 1996-07-15 1992 1996 12 7 12 15
North Dakota Edward Thomas Schafer Republican 417 1992-12-15 2000-12-15 1992 2000 12 12 15 15
Delaware Dale Edward Wolf Republican 3 1992-12-31 1993-01-19 1992 1993 12 1 31 19
New Hampshire Ralph Degnan Hough Republican 1 1993-01-02 1993-01-07 1993 1993 1 1 2 7
Montana Marc Racicot Republican 417 1993-01-04 2001-01-01 1993 2001 1 1 4 1
Utah Michael Okerlund Leavitt Republican 565 1993-01-04 2003-11-05 1993 2003 1 11 4 5
New Hampshire Stephen Everett Merrill Republican 209 1993-01-07 1997-01-09 1993 1997 1 1 7 9
North Carolina James Baxter Hunt Jr.  Democratic 417 1993-01-09 2001-01-06 1993 2001 1 1 9 6
Missouri Melvin Eugene Carnahan Democratic 405 1993-01-11 2000-10-16 1993 2000 1 10 11 16
Washington Michael Edward Lowry Democratic 209 1993-01-13 1997-01-15 1993 1997 1 1 13 15
Delaware Thomas Richard Carper Democratic 415 1993-01-19 2001-01-03 1993 2001 1 1 19 3
South Dakota Walter Dale Miller Republican 90 1993-04-19 1995-01-07 1993 1995 4 1 19 7
Alabama Jim Folsom Jr.  Democratic 91 1993-04-22 1995-01-16 1993 1995 4 1 22 16
Virginia George Felix Allen Republican 209 1994-01-15 1998-01-17 1994 1998 1 1 15 17
New Jersey Christine Todd Whitman Republican 367 1994-01-18 2001-01-31 1994 2001 1 1 18 31
Alaska Anthony Carroll Knowles Democratic 417 1994-12-05 2002-12-02 1994 2002 12 12 5 2
Hawaii Benjamin Jerome Cayetano Democratic 417 1994-12-05 2002-12-02 1994 2002 12 12 5 2
New York George Elmer Pataki Republican 626 1994-12-31 2006-12-31 1994 2006 12 12 31 31
New Mexico Gary Earl Johnson Republican 417 1995-01-01 2003-01-01 1995 2003 1 1 1 1
Idaho Philip Eugene Batt Republican 209 1995-01-02 1999-01-04 1995 1999 1 1 2 4
Wyoming James Edward Geringer Republican 418 1995-01-02 2003-01-06 1995 2003 1 1 2 6
Rhode Island Lincoln Carter Almond Republican 418 1995-01-03 2003-01-07 1995 2003 1 1 3 7
Connecticut John Grosvenor Rowland Republican 495 1995-01-04 2004-07-01 1995 2004 1 7 4 1
Maine Angus Stanley King Jr.  Independent 418 1995-01-05 2003-01-08 1995 2003 1 1 5 8
South Dakota William John Janklow Republican 417 1995-01-07 2003-01-07 1995 2003 1 1 7 7
Kansas Bill Preston Graves Republican 418 1995-01-09 2003-01-13 1995 2003 1 1 9 13
Oklahoma Frank Anthony Keating II Republican 418 1995-01-09 2003-01-13 1995 2003 1 1 9 13
Oregon John Albert Kitzhaber Democratic 418 1995-01-09 2003-01-13 1995 2003 1 1 9 13
South Carolina David Muldrow Beasley Republican 209 1995-01-11 1999-01-13 1995 1999 1 1 11 13
Alabama Forrest Hood James Jr.  Republican 209 1995-01-16 1999-01-18 1995 1999 1 1 16 18
Pennsylvania Thomas Joseph Ridge Republican 350 1995-01-17 2001-10-05 1995 2001 1 10 17 5
Texas George Walker Bush Republican 309 1995-01-17 2000-12-21 1995 2000 1 12 17 21
Maryland Parris Nelson Glendening Democratic 417 1995-01-18 2003-01-15 1995 2003 1 1 18 15
Tennessee Donald Kenneth Sundquist Republican 417 1995-01-21 2003-01-18 1995 2003 1 1 21 18
Kentucky Paul Edward Patton Democratic 417 1995-12-12 2003-12-09 1995 2003 12 12 12 9
Louisiana Murphy James Foster Jr.  Republican 418 1996-01-08 2004-01-12 1996 2004 1 1 8 12
Arkansas Michael Dale Huckabee Republican 547 1996-07-15 2007-01-09 1996 2007 7 1 15 9
New Hampshire Cynthia Jeanne Shaheen Democratic 313 1997-01-09 2003-01-09 1997 2003 1 1 9 9
Indiana Frank Lewis O’Bannon Democratic 348 1997-01-13 2003-09-13 1997 2003 1 9 13 13
West Virginia Cecil Harland Underwood Republican 209 1997-01-13 2001-01-15 1997 2001 1 1 13 15
Washington Gary Faye Locke Democratic 417 1997-01-15 2005-01-12 1997 2005 1 1 15 12
Massachusetts Argeo Paul Cellucci Republican 193 1997-07-29 2001-04-10 1997 2001 7 4 29 10
Arizona Jane Dee Hull Republican 278 1997-09-05 2003-01-06 1997 2003 9 1 5 6
Virginia James Stuart Gilmore III Republican 208 1998-01-17 2002-01-12 1998 2002 1 1 17 12
Florida Kenneth Hood MacKay Jr.  Democratic 3 1998-12-12 1999-01-05 1998 1999 12 1 12 5
Ohio Nancy Putnam Hollister Republican 2 1998-12-31 1999-01-11 1998 1999 12 1 31 11
California Joseph Graham Davis Jr.  Democratic 254 1999-01-04 2003-11-17 1999 2003 1 11 4 17
Idaho Dirk Arthur Kempthorne Republican 386 1999-01-04 2006-05-26 1999 2006 1 5 4 26
Minnesota Jesse Ventura Reform 209 1999-01-04 2003-01-06 1999 2003 1 1 4 6
Nevada Kenneth Carroll Guinn Republican 417 1999-01-04 2007-01-01 1999 2007 1 1 4 1
Florida John Ellis Bush Republican 417 1999-01-05 2007-01-02 1999 2007 1 1 5 2
Nebraska Michael Owens Johanns Republican 315 1999-01-07 2005-01-20 1999 2005 1 1 7 20
Georgia Roy Eugene Barnes Democratic 209 1999-01-11 2003-01-13 1999 2003 1 1 11 13
Illinois George Homer Ryan Republican 209 1999-01-11 2003-01-13 1999 2003 1 1 11 13
Ohio Robert Alphonso Taft III Republican 417 1999-01-11 2007-01-08 1999 2007 1 1 11 8
Colorado William Forrester Owens Republican 417 1999-01-12 2007-01-09 1999 2007 1 1 12 9
South Carolina James Hovis Hodges Democratic 209 1999-01-13 2003-01-15 1999 2003 1 1 13 15
Iowa Thomas James Wilsack Democratic 417 1999-01-15 2007-01-12 1999 2007 1 1 15 12
Alabama Donald Eugene Siegelman Democratic 209 1999-01-18 2003-01-20 1999 2003 1 1 18 20
Mississippi David Ronald Musgrove Democratic 209 2000-01-11 2004-01-13 2000 2004 1 1 11 13
Missouri Roger B. Wilson Democratic 12 2000-10-16 2001-01-08 2000 2001 10 1 16 8
North Dakota John Henry Hoeven III Republican 521 2000-12-15 2010-12-07 2000 2010 12 12 15 7
Texas James Richard Perry Republican 735 2000-12-21 2015-01-20 2000 2015 12 1 21 20
Montana Judith Helen Martz Republican 209 2001-01-01 2005-01-03 2001 2005 1 1 1 3
Delaware Ruth Ann Minner Democratic 420 2001-01-03 2009-01-20 2001 2009 1 1 3 20
North Carolina Michael Francis Easley Democratic 418 2001-01-06 2009-01-10 2001 2009 1 1 6 10
Missouri Robert Lee Holden Jr.  Democratic 209 2001-01-08 2005-01-10 2001 2005 1 1 8 10
West Virginia Robert Ellsworth Wise Jr.  Democratic 209 2001-01-15 2005-01-17 2001 2005 1 1 15 17
New Jersey Donald Thomas DiFrancesco Republican 49 2001-01-31 2002-01-08 2001 2002 1 1 31 8
Wisconsin James Scott McCallum Republican 101 2001-02-01 2003-01-06 2001 2003 2 1 1 6
Massachusetts Jane Maria Swift Republican 90 2001-04-10 2003-01-02 2001 2003 4 1 10 2
Pennsylvania Mark Stephen Schweiker Republican 68 2001-10-05 2003-01-21 2001 2003 10 1 5 21
New Jersey John J. Farmer Jr.  Republican 0 2002-01-08 2002-01-08 2002 2002 1 1 8 8
New Jersey John Orus Bennett III Republican 1 2002-01-08 2002-01-12 2002 2002 1 1 8 12
New Jersey Richard James Codey Democratic 0 2002-01-12 2002-01-15 2002 2002 1 1 12 15
Virginia Mark Robert Warner Democratic 209 2002-01-12 2006-01-14 2002 2006 1 1 12 14
New Jersey James Edward McGreevey Democratic 148 2002-01-15 2004-11-15 2002 2004 1 11 15 15
Alaska Frank Hughes Murkowski Republican 209 2002-12-02 2006-12-04 2002 2006 12 12 2 4
Hawaii Linda Lingle Republican 418 2002-12-02 2010-12-06 2002 2010 12 12 2 6
Michigan Jennifer Mulhern Granholm Democratic 417 2003-01-01 2011-01-01 2003 2011 1 1 1 1
New Mexico William Blaine Richardson III Democratic 417 2003-01-01 2011-01-01 2003 2011 1 1 1 1
Massachusetts Willard Mitt Romney Republican 209 2003-01-02 2007-01-04 2003 2007 1 1 2 4
Arizona Janet Ann Napolitano Democratic 315 2003-01-06 2009-01-21 2003 2009 1 1 6 21
Minnesota Timothy James Pawlenty Republican 417 2003-01-06 2011-01-03 2003 2011 1 1 6 3
Wisconsin James Edward Doyle Jr.  Democratic 417 2003-01-06 2011-01-03 2003 2011 1 1 6 3
Wyoming David Duane Freudenthal Democratic 417 2003-01-06 2011-01-03 2003 2011 1 1 6 3
Rhode Island Donald Louis Carcieri Republican 417 2003-01-07 2011-01-04 2003 2011 1 1 7 4
South Dakota Marion Michael Rounds Republican 418 2003-01-07 2011-01-08 2003 2011 1 1 7 8
Maine John Elias Baldacci Democratic 417 2003-01-08 2011-01-05 2003 2011 1 1 8 5
New Hampshire Craig R. Benson Republican 104 2003-01-09 2005-01-06 2003 2005 1 1 9 6
Vermont James Holley Douglas Republican 417 2003-01-09 2011-01-06 2003 2011 1 1 9 6
Georgia George Ervin Perdue III Republican 417 2003-01-13 2011-01-10 2003 2011 1 1 13 10
Illinois Rod Blagojevich Democratic 315 2003-01-13 2009-01-29 2003 2009 1 1 13 29
Kansas Kathleen Sebelius Democratic 328 2003-01-13 2009-04-28 2003 2009 1 4 13 28
Oklahoma Charles Bradford Henry Democratic 417 2003-01-13 2011-01-10 2003 2011 1 1 13 10
Oregon Theodore Ralph Kulongoski Democratic 417 2003-01-13 2011-01-10 2003 2011 1 1 13 10
Maryland Robert Leroy Ehrlich Jr.  Republican 209 2003-01-15 2007-01-17 2003 2007 1 1 15 17
South Carolina Marshall Clement Sanford Jr.  Republican 417 2003-01-15 2011-01-12 2003 2011 1 1 15 12
Tennessee Philip Norman Bredesen Jr.  Democratic 417 2003-01-18 2011-01-15 2003 2011 1 1 18 15
Alabama Robert Renfroe Riley Republican 417 2003-01-20 2011-01-17 2003 2011 1 1 20 17
Pennsylvania Edward Gene Rendell Democratic 417 2003-01-21 2011-01-18 2003 2011 1 1 21 18
Indiana Joseph Eugene Kernan III Democratic 69 2003-09-13 2005-01-10 2003 2005 9 1 13 10
Utah Olene Walker Republican 61 2003-11-05 2005-01-03 2003 2005 11 1 5 3
California Arnold Alois Schwarzenegger Republican 372 2003-11-17 2011-01-03 2003 2011 11 1 17 3
Kentucky Ernest Lee Fletcher Republican 209 2003-12-09 2007-12-11 2003 2007 12 12 9 11
Louisiana Kathleen Babineaux Blanco Democratic 209 2004-01-12 2008-01-14 2004 2008 1 1 12 14
Mississippi Haley Reeves Barbour Republican 417 2004-01-13 2012-01-10 2004 2012 1 1 13 10
Connecticut Mary Carolyn Rell Republican 340 2004-07-01 2011-01-05 2004 2011 7 1 1 5
New Jersey Richard James Codey Democratic 61 2004-11-15 2006-01-17 2004 2006 11 1 15 17
Montana Brian David Schweitzer Democratic 418 2005-01-03 2013-01-07 2005 2013 1 1 3 7
Utah Jon Meade Huntsman Jr.  Republican 240 2005-01-03 2009-08-11 2005 2009 1 8 3 11
New Hampshire John Hayden Lynch Democratic 417 2005-01-06 2013-01-03 2005 2013 1 1 6 3
Indiana Mitchell Elias Daniels Jr.  Republican 418 2005-01-10 2013-01-14 2005 2013 1 1 10 14
Missouri Matthew Roy Blunt Republican 209 2005-01-10 2009-01-12 2005 2009 1 1 10 12
Washington Christine O’Grady Gregoire Democratic 418 2005-01-12 2013-01-16 2005 2013 1 1 12 16
West Virginia Joseph Manchin III Democratic 304 2005-01-17 2010-11-15 2005 2010 1 11 17 15
Nebraska David Eugene Heineman Republican 520 2005-01-20 2015-01-08 2005 2015 1 1 20 8
Virginia Timothy Michael Kaine Democratic 209 2006-01-14 2010-01-16 2006 2010 1 1 14 16
New Jersey Jon Stevens Corzine Democratic 209 2006-01-17 2010-01-19 2006 2010 1 1 17 19
Idaho James Elroy Risch Republican 31 2006-05-26 2007-01-01 2006 2007 5 1 26 1
Alaska Sarah Louise Palin Republican 138 2006-12-04 2009-07-26 2006 2009 12 7 4 26
New York Eliot Laurence Spitzer Democratic 63 2006-12-31 2008-03-17 2006 2008 12 3 31 17
Idaho Clement Leroy Otter Republican 627 2007-01-01 2019-01-07 2007 2019 1 1 1 7
Nevada James Arthur Gibbons Republican 209 2007-01-01 2011-01-03 2007 2011 1 1 1 3
Florida Charlie Joseph Crist Jr.  Republican 209 2007-01-02 2011-01-04 2007 2011 1 1 2 4
Massachusetts Deval Laurdine Patrick Democratic 418 2007-01-04 2015-01-08 2007 2015 1 1 4 8
Ohio Theodore Strickland Democratic 209 2007-01-08 2011-01-10 2007 2011 1 1 8 10
Arkansas Mickey Dale Beebe Democratic 418 2007-01-09 2015-01-13 2007 2015 1 1 9 13
Colorado August William Ritter Jr.  Democratic 209 2007-01-09 2011-01-11 2007 2011 1 1 9 11
Iowa Chester John Culver Democratic 209 2007-01-12 2011-01-14 2007 2011 1 1 12 14
Maryland Martin Joseph O’Malley Democratic 418 2007-01-17 2015-01-21 2007 2015 1 1 17 21
Kentucky Steven Lynn Beshear Democratic 417 2007-12-11 2015-12-08 2007 2015 12 12 11 8
Louisiana Piyush Jindal Republican 417 2008-01-14 2016-01-11 2008 2016 1 1 14 11
New York David Alexander Paterson Democratic 146 2008-03-17 2010-12-31 2008 2010 3 12 17 31
North Carolina Beverly Eaves Perdue Democratic 208 2009-01-10 2013-01-05 2009 2013 1 1 10 5
Missouri Jeremiah Wilson Nixon Democratic 417 2009-01-12 2017-01-09 2009 2017 1 1 12 9
Delaware Jack Alan Markell Democratic 417 2009-01-20 2017-01-17 2009 2017 1 1 20 17
Arizona Janice Kay Brewer Republican 311 2009-01-21 2015-01-05 2009 2015 1 1 21 5
Illinois Patrick Joseph Quinn Jr.  Democratic 311 2009-01-29 2015-01-12 2009 2015 1 1 29 12
Kansas Mark Vincent Parkinson Democratic 89 2009-04-28 2011-01-10 2009 2011 4 1 28 10
Alaska Sean Randall Parnell Republican 279 2009-07-26 2014-12-01 2009 2014 7 12 26 1
Utah Gary Richard Herbert Republican 595 2009-08-11 2021-01-04 2009 2021 8 1 11 4
Virginia Robert Francis McDonnell Republican 208 2010-01-16 2014-01-11 2010 2014 1 1 16 11
New Jersey Christopher James Christie Republican 417 2010-01-19 2018-01-16 2010 2018 1 1 19 16
West Virginia Earl Ray Tomblin Democratic 322 2010-11-15 2017-01-16 2010 2017 11 1 15 16
Hawaii Neil Abercrombie Democratic 208 2010-12-06 2014-12-01 2010 2014 12 12 6 1
North Dakota Jack Stewart Dalrymple III Republican 314 2010-12-07 2016-12-15 2010 2016 12 12 7 15
New York Andrew Mark Cuomo Democratic 555 2010-12-31 2021-08-23 2010 2021 12 8 31 23
Michigan Richard Dale Snyder Republican 417 2011-01-01 2019-01-01 2011 2019 1 1 1 1
New Mexico Susana Martinez Republican 417 2011-01-01 2019-01-01 2011 2019 1 1 1 1
California Edmund Gerland Brown Jr.  Democratic 418 2011-01-03 2019-01-07 2011 2019 1 1 3 7
Minnesota Mark Brandt Dayton Democratic 418 2011-01-03 2019-01-07 2011 2019 1 1 3 7
Nevada Brian Edward Sandoval Republican 418 2011-01-03 2019-01-07 2011 2019 1 1 3 7
Wisconsin Scott Kevin Walker Republican 418 2011-01-03 2019-01-07 2011 2019 1 1 3 7
Wyoming Matthew Hansen Mead Republican 418 2011-01-03 2019-01-07 2011 2019 1 1 3 7
Florida Richard Lynn Scott Republican 418 2011-01-04 2019-01-07 2011 2019 1 1 4 7
Rhode Island Lincoln Davenport Chafee Independent 209 2011-01-04 2015-01-06 2011 2015 1 1 4 6
Connecticut Dannel Patrick Malloy Democratic 418 2011-01-05 2019-01-09 2011 2019 1 1 5 9
Maine Paul Richard LePage Republican 417 2011-01-05 2019-01-02 2011 2019 1 1 5 2
Vermont Peter Elliott Shumlin Democratic 313 2011-01-06 2017-01-05 2011 2017 1 1 6 5
South Dakota Dennis Martin Daugaard Republican 417 2011-01-08 2019-01-05 2011 2019 1 1 8 5
Georgia John Nathan Deal Republican 418 2011-01-10 2019-01-14 2011 2019 1 1 10 14
Kansas Samuel Dale Brownback Republican 368 2011-01-10 2018-01-31 2011 2018 1 1 10 31
Ohio John Richard Kasich Jr.  Republican 418 2011-01-10 2019-01-14 2011 2019 1 1 10 14
Oklahoma Mary Fallin Republican 418 2011-01-10 2019-01-14 2011 2019 1 1 10 14
Oregon John Albert Kitzhaber Democratic 214 2011-01-10 2015-02-18 2011 2015 1 2 10 18
Colorado John Wright Hickenlooper Jr.  Democratic 417 2011-01-11 2019-01-08 2011 2019 1 1 11 8
South Carolina Nimrata Nikki Haley Republican 315 2011-01-12 2017-01-24 2011 2017 1 1 12 24
Iowa Terry Edward Branstad Republican 332 2011-01-14 2017-05-24 2011 2017 1 5 14 24
Tennessee William Edward Haslam Republican 418 2011-01-15 2019-01-19 2011 2019 1 1 15 19
Alabama Robert Julian Bentley Republican 325 2011-01-17 2017-04-10 2011 2017 1 4 17 10
Pennsylvania Thomas Wingett Corbett Jr.  Republican 209 2011-01-18 2015-01-20 2011 2015 1 1 18 20
Mississippi Dewey Philip Bryant Republican 418 2012-01-10 2020-01-14 2012 2020 1 1 10 14
New Hampshire Margaret Coldwell Hassan Democratic 209 2013-01-03 2017-01-02 2013 2017 1 1 3 2
North Carolina Patrick Lloyd McCrory Republican 208 2013-01-05 2017-01-01 2013 2017 1 1 5 1
Montana Stephen Clark Bullock Democratic 417 2013-01-07 2021-01-04 2013 2021 1 1 7 4
Indiana Michael Richard Pence Republican 208 2013-01-14 2017-01-09 2013 2017 1 1 14 9
Washington Jay Robert Inslee Democratic 626 2013-01-16 2025-01-13 2013 2025 1 1 16 13
Virginia Terence Richard McAuliffe Democratic 209 2014-01-11 2018-01-13 2014 2018 1 1 11 13
Alaska William Martin Walker Independent 209 2014-12-01 2018-12-03 2014 2018 12 12 1 3
Hawaii David Yutaka Ige Democratic 418 2014-12-01 2022-12-05 2014 2022 12 12 1 5
Arizona Doug Anthony Ducey Jr.  Republican 417 2015-01-05 2023-01-02 2015 2023 1 1 5 2
Rhode Island Gina Marie Raimondo Democratic 321 2015-01-06 2021-03-02 2015 2021 1 3 6 2
Massachusetts Charles Duane Baker Jr.  Republican 417 2015-01-08 2023-01-08 2015 2023 1 1 8 8
Nebraska John Peter Ricketts Republican 418 2015-01-08 2023-01-12 2015 2023 1 1 8 12
Illinois Bruce Vincent Rauner Republican 209 2015-01-12 2019-01-14 2015 2019 1 1 12 14
Arkansas William Asa Hutchinson II Republican 417 2015-01-13 2023-01-10 2015 2023 1 1 13 10
Pennsylvania Thomas Westerman Wolf Democratic 417 2015-01-20 2023-01-17 2015 2023 1 1 20 17
Texas Gregory Wayne Abbott Republican 417 2015-01-20 2023-01-17 2015 2023 1 1 20 17
Maryland Lawrence Joseph Hogan Jr.  Republican 417 2015-01-21 2023-01-21 2015 2023 1 1 21 21
Oregon Katherine Brown Democratic 412 2015-02-18 2023-01-09 2015 2023 2 1 18 9
Kentucky Matthew Griswold Bevin Republican 209 2015-12-08 2019-12-10 2015 2019 12 12 8 10
Louisiana John Bel Edwards Democratic 417 2016-01-11 2024-01-08 2016 2024 1 1 11 8
North Dakota Douglas James Burgum Republican 417 2016-12-15 2024-12-15 2016 2024 12 12 15 15
North Carolina Roy Asberry Cooper III Democratic 418 2017-01-01 2025-01-03 2017 2025 1 1 1 3
New Hampshire Chuck Morse Republican 0 2017-01-02 2017-01-05 2017 2017 1 1 2 5
New Hampshire Christopher Thomas Sununu Republican 313 2017-01-05 2023-01-05 2017 2023 1 1 5 5
Vermont Philip Brian Scott Republican 313 2017-01-05 2023-01-05 2017 2023 1 1 5 5
Indiana Eric Joseph Holcomb Republican 417 2017-01-09 2025-01-09 2017 2025 1 1 9 9
Missouri Erich Robert Greitens Republican 73 2017-01-09 2018-06-01 2017 2018 1 6 9 1
West Virginia James Conley Justice II Democratic 417 2017-01-16 2025-01-13 2017 2025 1 1 16 13
Delaware John Charles Carney Jr.  Democratic 418 2017-01-17 2025-01-20 2017 2025 1 1 17 20
South Carolina Henry Dargan McMaster Republican 313 2017-01-24 2023-01-24 2017 2023 1 1 24 24
Alabama Kay Ellen Ivey Republican 301 2017-04-10 2023-01-16 2017 2023 4 1 10 16
Iowa Kimberly Kay Reynolds Republican 294 2017-05-24 2023-01-10 2017 2023 5 1 24 10
Virginia Ralph Shearer Northam Democratic 209 2018-01-13 2022-01-15 2018 2022 1 1 13 15
New Jersey Philip Dunton Murphy Democratic 417 2018-01-16 2026-01-16 2018 2026 1 1 16 16
Kansas Jeffrey William Colyer Republican 50 2018-01-31 2019-01-14 2018 2019 1 1 31 14
Missouri Michael Lynn Parsons Republican 293 2018-06-01 2024-01-09 2018 2024 6 1 1 9
Alaska Michael James Dunleavy Republican 209 2018-12-03 2022-12-05 2018 2022 12 12 3 5
Michigan Gretchen Esther Whitmer Democratic 209 2019-01-01 2023-01-01 2019 2023 1 1 1 1
New Mexico MIchelle Lynn Lujan Grisham Democratic 209 2019-01-01 2023-01-01 2019 2023 1 1 1 1
Maine Janet Trafton Mills Democratic 209 2019-01-02 2023-01-02 2019 2023 1 1 2 2
South Dakota Kristi Lynn Noem Republican 209 2019-01-05 2023-01-05 2019 2023 1 1 5 5
California Gavin Newsom Democratic 208 2019-01-07 2023-01-02 2019 2023 1 1 7 2
Florida Ronald Dion DeSantis Republican 208 2019-01-07 2023-01-02 2019 2023 1 1 7 2
Idaho Bradley Jay Little Republican 208 2019-01-07 2023-01-02 2019 2023 1 1 7 2
Minnesota Timothy James Walz Democratic 209 2019-01-07 2023-01-07 2019 2023 1 1 7 7
Nevada Stephen F. Sisolak Democratic 209 2019-01-07 2023-01-07 2019 2023 1 1 7 7
Wisconsin Anthony Steven Evers Democratic 209 2019-01-07 2023-01-07 2019 2023 1 1 7 7
Wyoming Mark Gordon Republican 209 2019-01-07 2023-01-07 2019 2023 1 1 7 7
Colorado Jared Schutz Polis Democratic 209 2019-01-08 2023-01-10 2019 2023 1 1 8 10
Connecticut Ned Lamont Democratic 208 2019-01-09 2023-01-04 2019 2023 1 1 9 4
Georgia Brian Porter Kemp Republican 208 2019-01-14 2023-01-09 2019 2023 1 1 14 9
Illinois Jay Robert Pritzker Democratic 208 2019-01-14 2023-01-09 2019 2023 1 1 14 9
Kansas Laura J. Kelly Democratic 208 2019-01-14 2023-01-09 2019 2023 1 1 14 9
Ohio Richard Michael DeWine Republican 208 2019-01-14 2023-01-09 2019 2023 1 1 14 9
Oklahoma John Kevin Stitt Republican 209 2019-01-14 2023-01-14 2019 2023 1 1 14 14
Tennessee William Byron Lee Republican 209 2019-01-19 2023-01-19 2019 2023 1 1 19 19
Kentucky Andrew Graham Beshear Democratic 209 2019-12-10 2023-12-12 2019 2023 12 12 10 12
Mississippi Jonathan Tate Reeves Republican 209 2020-01-14 2024-01-14 2020 2024 1 1 14 14
Montana Gregory Richard Gianforte Republican 209 2021-01-04 2025-01-04 2021 2025 1 1 4 4
Utah Spencer James Cox Republican 105 2021-01-04 2023-01-06 2021 2023 1 1 4 6
Rhode Island Daniel J. McKee Democratic 96 2021-03-02 2023-01-06 2021 2023 3 1 2 6
New York Kathleen Courtney Hochul Democratic 71 2021-08-23 2023-01-01 2021 2023 8 1 23 1
Virginia Glenn Allen Youngkin Republican 209 2022-01-15 2026-01-15 2022 2026 1 1 15 15

figure.2

politicalBlues <- colorRampPalette(brewer.pal(9, "Blues"))(2587)
#........... graph ................................
fig2 <- ggplot(GovernorTermDates,
               aes(x = Sworn_In_Year,
                   y = month.abb[Sworn_In_Month])) +
  geom_jitter(color = "darkblue",
              size = 4,
              alpha = 0.5) +
  scale_fill_manual(values = politicalBlues) +
  geom_boxplot(alpha = 0.65,
               outlier.color = "red") +
  xlab("Service Years") +
  ylab("") +
  theme_minimal() +
  ggtitle("U.S. Governor Entered Office")

fig2

figure.2b

fig2b <- ggplot(GovernorTermDates,
               aes(x = Left_Office_Year,
                   y = month.abb[Left_Office_Month])) +
  geom_jitter(color = "darkblue",
              size = 4,
              alpha = 0.5) +
  scale_fill_manual(values = politicalBlues) +
  geom_boxplot(alpha = 0.65,
               outlier.color = "red") +
  xlab("Service Years") +
  ylab("") +
  theme_minimal() +
  ggtitle("U.S. Governor Left Office")

fig2b

errors

As you can see there are negative served days which was corrected above under the, replace dates section, but I’ve add an extra syntax with the original data set to show these errors.

#..... copy of original dataframe ...........................
StateGovErrors_df %>%
  select(governor_full_name,
         took_office,
         left_office) %>% 
  mutate(took_office = str_squish(took_office),
         left_office = str_squish(left_office),
         took_office = as.Date(took_office,
                               format = "%B %d, %Y"),
         left_office = as.Date(left_office,
                               format = "%B %d, %Y")) -> StateGovErrors_df

#.............. table ........................
GovInaugErrors <- StateGovErrors_df %>%
  group_by("Governor" = as.factor(governor_full_name),
           "Entered" = took_office,
           "Left" = left_office) %>% 
  summarise("Served" = difftime(
              Left,
              Entered,
              units = c("days")),
            .groups = "keep") %>%
  ungroup() %>% 
  arrange(Served) %>% 
  kbl() %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>% 
  row_spec(0, bold = TRUE) %>% 
  row_spec(1, bold = TRUE, color = "white", background = "#F8BEB0") %>% 
  row_spec(2, bold = TRUE, color = "white", background = "#F7B0A3") %>% 
  row_spec(3, bold = TRUE, color = "white", background = "#F49489") %>% 
  row_spec(4, bold = TRUE, color = "white", background = "#F17970") %>% 
  row_spec(5, bold = TRUE, color = "white", background = "#ED5851") %>% 
  row_spec(6, bold = TRUE, color = "white", background = "#EA332F") %>% 
  row_spec(7, bold = TRUE, color = "white", background = "#E60D0C") %>% 
  row_spec(8, bold = TRUE, color = "white", background = "#CB0002") %>% 
  scroll_box(height = "300px")

GovInaugErrors
Governor Entered Left Served
William James Samford 2021-12-01 1901-06-11 -44003 days
John Forsyth 1927-11-07 1829-11-04 -35796 days
James Pollock 1955-01-16 1858-01-19 -35425 days
John Jacob Cornwell 1917-03-05 1821-03-04 -35064 days
George Campbell Peery 1934-01-16 1838-01-18 -35061 days
Theodore Francis Green 1933-01-03 1837-01-05 -35061 days
Thomas Brown 1949-10-01 1853-10-03 -35061 days
Gove Saulsbury 1965-03-01 1871-01-17 -34376 days
Ellis Gibbs Arnall 1947-01-14 1947-01-14 0 days
Eugene Talmadge 1947-01-14 1947-01-14 0 days
Garret Dorset Wall 1829-11-06 1829-11-06 0 days
Henry Lee III 1791-12-01 1791-12-01 0 days
Henry Molleston 1820-01-18 1820-01-18 0 days
John J. Farmer Jr.  2002-01-08 2002-01-08 0 days
John Winchester Dana 1844-01-03 1844-01-03 0 days
Orland Steen Loomis 1943-01-04 1943-01-04 0 days
Hiram Bingham III 1925-01-07 1925-01-08 1 days
James Hamilton Peabody 1905-03-16 1905-03-17 1 days
Nathaniel Mervin Haskell 1953-01-06 1953-01-07 1 days
Richard Hampton Vose 1841-01-12 1841-01-13 1 days
David Dunn 1844-01-01 1844-01-03 2 days
Henry Smith Lane 1861-01-14 1861-01-16 2 days
Chuck Morse 2017-01-02 2017-01-05 3 days
Daniel Rose 1822-01-02 1822-01-05 3 days
Hardin Burnley 1799-12-06 1799-12-09 3 days
Jesse M. Martin 1909-01-11 1909-01-14 3 days
John Wayne Mixson 1987-01-03 1987-01-06 3 days
Richard James Codey 2002-01-12 2002-01-15 3 days
William Justus Goebel 1900-01-31 1900-02-03 3 days
Arthur MacArthur Sr.  1856-03-21 1856-03-25 4 days
George William Smith 1811-01-15 1811-01-19 4 days
John Orus Bennett III 2002-01-08 2002-01-12 4 days
Charles Aurelius Smith 1915-01-14 1915-01-19 5 days
Clifford Ross Powell 1935-01-03 1935-01-08 5 days
Fletcher Summerfield Stockdale 1865-06-11 1865-06-16 5 days
John Jones Pettus 1854-01-05 1854-01-10 5 days
John LaRue Helm 1867-09-03 1867-09-08 5 days
Milton Slocum Latham 1860-01-09 1860-01-14 5 days
Ralph Degnan Hough 1993-01-02 1993-01-07 5 days
Robert Nance Haskell 1959-01-02 1959-01-07 5 days
William Kavanaugh Oldham 1913-03-08 1913-03-13 5 days
Daniel Duane Tompkins Farnsworth 1869-02-26 1869-03-04 6 days
Joe Edward Purcell 1979-01-03 1979-01-09 6 days
Clarence Edwards Case 1920-01-13 1920-01-20 7 days
Horace Griggs Prall 1935-01-08 1935-01-15 7 days
David Jameson 1781-11-22 1781-11-30 8 days
George Patterson Nigh 1963-01-06 1963-01-14 8 days
Vesta M. Roy 1982-12-29 1983-01-06 8 days
Peyton Randolph 1811-12-26 1812-01-04 9 days
William Fleming 1781-06-03 1781-06-12 9 days
George Wells 1780-02-06 1780-02-16 10 days
John Pendleton Jr.  1799-12-09 1799-12-19 10 days
Richard James Oglesby 1873-01-13 1873-01-23 10 days
Bob Cowley Riley 1975-01-03 1975-01-14 11 days
John Berridge McCuish 1957-01-03 1957-01-14 11 days
John Mercer Patton 1841-03-20 1841-03-31 11 days
John William Brown 1957-01-03 1957-01-14 11 days
Nancy Putnam Hollister 1998-12-31 1999-01-11 11 days
Raymond Herbert Talbot 1937-01-01 1937-01-12 11 days
Thomas Fletcher 1862-11-04 1862-11-15 11 days
Charles Wilbert Snow 1946-12-27 1947-01-08 12 days
Matthew Talbot 1819-10-24 1819-11-05 12 days
Burton Melvin Cross 1952-12-24 1953-01-06 13 days
John Sammon McKiernan 1950-12-19 1951-01-02 14 days
Robert David Fulton 1969-01-01 1969-01-16 15 days
William Lee Davidson Ewing 1834-11-17 1834-12-03 16 days
David Penrose Buckson 1960-12-30 1961-01-17 18 days
Dale Edward Wolf 1992-12-31 1993-01-19 19 days
John Cromwell Bell Jr.  1947-01-02 1947-01-21 19 days
Dennis Herron Murphree 1943-12-26 1944-01-18 23 days
John Sebastian Little 1907-01-18 1907-02-11 24 days
Kenneth Hood MacKay Jr.  1998-12-12 1999-01-05 24 days
William Dorsey Jelks 1900-12-01 1900-12-26 25 days
Frederic Hale Parkhurst 1921-01-05 1921-01-31 26 days
Thomas H. Moodie 1935-01-07 1935-02-02 26 days
Warren Winslow 1854-12-06 1855-01-01 26 days
Benjamin Ames 1821-12-05 1822-01-02 28 days
Charles Poletti 1942-12-03 1942-12-31 28 days
Henry Schuyler Thibodaux 1824-11-15 1824-12-13 28 days
James Wilson Henderson 1853-11-23 1853-12-21 28 days
Edward Hazzard East 1865-03-05 1865-04-05 31 days
Richard Howly 1780-01-04 1780-02-05 32 days
Thomas Felix Bolack 1962-11-30 1963-01-01 32 days
Joshua Hall 1830-01-06 1830-02-09 34 days
Pickney Benton Stewart Pinchback 1872-12-09 1873-01-13 35 days
George Foster Shepley 1864-01-25 1864-03-04 39 days
George Madison 1816-09-05 1816-10-14 39 days
Frank Leslie Hagaman 1950-11-28 1951-01-08 41 days
Francis Emroy Warren 1890-10-11 1890-11-24 44 days
Abraham Kurkindolle Allison 1865-04-01 1865-05-19 48 days
Ezequiel Cabeza De Baca 1917-01-01 1917-02-18 48 days
Hannibal Hamlin 1857-01-08 1857-02-25 48 days
John Anthony Quitman 1835-11-20 1836-01-07 48 days
William Sylvester Taylor 1899-12-12 1900-01-31 50 days
Gerard Chittocque Brandon 1825-11-17 1826-01-07 51 days
Isaac Pusey Gray 1880-11-20 1881-01-10 51 days
Joseph Taylor Robinson 1913-01-16 1913-03-08 51 days
Warren Garst 1908-11-24 1909-01-14 51 days
Paul Brigham 1797-08-25 1797-10-16 52 days
Leo Elthon 1954-11-21 1955-01-13 53 days
Trusten W. Polk 1857-01-05 1857-02-27 53 days
James Brice 1792-02-10 1792-04-05 55 days
Samuel Goodlove Cosgrove 1909-01-27 1909-03-28 60 days
Joseph Maull 1846-03-02 1846-05-03 62 days
Herman Eugene Talmadge 1947-01-14 1947-03-18 63 days
George Walton 1779-11-01 1780-01-04 64 days
Alva Adams 1905-01-10 1905-03-16 65 days
Button Gwinnett 1777-03-04 1777-05-08 65 days
Thomas Henderson 1793-03-30 1793-06-03 65 days
Alexander Hamilton Stephens 1883-03-04 1883-05-10 67 days
James Whitfield 1851-11-04 1852-01-10 67 days
Nehemiah Green 1868-11-04 1869-01-11 68 days
Martin Van Buren 1828-12-31 1829-03-12 71 days
Michae Hoke Smith 1911-11-15 1912-01-25 71 days
Benjamin F. Conley 1871-10-30 1872-01-12 74 days
Frank Dwight Fitzgerald 1939-01-01 1939-03-16 74 days
James Monroe 1811-01-19 1811-04-03 74 days
George Laird Shoup 1890-10-01 1890-12-18 78 days
Joshua Hopkins Marvil 1895-01-15 1895-04-08 83 days
Leon Rutherford Taylor 1913-10-28 1914-01-20 84 days
Ratliff Boon 1822-09-12 1822-12-05 84 days
Roger B. Wilson 2000-10-16 2001-01-08 84 days
William Cole Cozzens 1863-03-03 1863-05-26 84 days
Horace White 1910-10-06 1910-12-31 86 days
John Wereat 1779-08-06 1779-11-01 87 days
George Plater III 1791-11-14 1792-02-10 88 days
Nathan Cutler 1829-10-08 1830-01-06 90 days
Thomas Bothwell Jeter 1880-09-01 1880-11-30 90 days
David Ogden Watkins 1898-10-18 1899-01-17 91 days
John Isaac Moore 1907-02-11 1907-05-14 92 days
Joseph Merrill Harper 1831-02-28 1831-06-02 94 days
Franklin Earl Lucas 1924-10-02 1925-01-05 95 days
Elisha Lawrence 1790-07-25 1790-10-29 96 days
John Henry Stelle 1940-10-06 1941-01-13 99 days
Richard C. Byrd 1849-01-10 1849-04-19 99 days
Thomas Cushing III 1785-02-17 1785-05-27 99 days
Armand Julie Beauvais 1829-10-06 1830-01-14 100 days
Abram Adams Hammond 1860-10-04 1861-01-14 102 days
Louis Powell Harvey 1862-01-06 1862-04-19 103 days
George Leavens Lilley 1909-01-06 1909-04-21 105 days
James Albert Noe Sr.  1936-01-28 1936-05-12 105 days
Francis Jardine Bell 1890-09-21 1891-01-05 106 days
Stephen Bennett Packard Sr.  1877-01-08 1877-04-25 107 days
Marcus Morton 1825-02-06 1825-05-26 109 days
Alvin Olin King 1932-01-25 1932-05-16 112 days
Joseph Emile Harley 1941-11-04 1942-02-27 115 days
Peter Thacher Washburn 1869-10-15 1870-02-07 115 days
Charles Henry Dietrich 1901-01-03 1901-05-01 118 days
Dwight Willard Burney 1960-09-09 1961-01-05 118 days
Alfred Holt Colquitt 1882-11-04 1883-03-04 120 days
Samuel Lewis Southard 1832-10-26 1833-02-27 124 days
William Lewis Sharkey 1865-06-13 1865-10-16 125 days
John Taylor 1817-02-24 1817-06-30 126 days
Hugh McVay 1837-07-17 1837-11-21 127 days
John McEnery 1873-01-13 1873-05-22 129 days
William Kennedy 1815-06-19 1815-10-26 129 days
Charles Lynch 1833-07-12 1833-11-20 131 days
Charles Anderson 1865-08-29 1866-01-08 132 days
Walter Jeremiah Maddock 1928-08-28 1929-01-09 134 days
Hjalmar Petersen 1936-08-22 1937-01-04 135 days
Wesley Bolin 1977-10-20 1978-03-04 135 days
Joseph Mackey Brown 1911-07-01 1911-11-15 137 days
Nathan Brownson 1781-08-18 1782-01-03 138 days
Levi Lincoln Sr.  1808-12-10 1809-05-01 142 days
John Calhoun Sheppard 1886-07-10 1886-11-30 143 days
Junius Marion Futrell 1913-03-13 1913-08-06 146 days
Joseph McMurray Devine 1898-08-09 1899-01-03 147 days
Benjamin Franklin Perry 1865-06-30 1865-11-26 149 days
Joseph Haslet 1823-01-21 1823-06-20 150 days
Andrew Gordon Magrath 1864-12-18 1865-05-25 158 days
Harvey Lowell Wollman 1978-07-24 1979-01-01 161 days
John M. Pattison 1906-01-08 1906-06-18 161 days
Thomas Nelson Jr.  1781-06-12 1781-11-22 163 days
William Hall 1829-04-16 1829-10-01 168 days
Abraham Jude Williams 1825-08-04 1826-01-20 169 days
Thomas Howard Ruger 1868-01-13 1868-07-04 173 days
Lewis Eliphalet Parsons 1865-06-21 1865-12-13 175 days
Joshua Gabriel Baker 1868-01-02 1868-06-27 177 days
Daniel Martin 1831-01-13 1831-07-11 179 days
James Johnson 1865-06-17 1865-12-14 180 days
Henry Adoniram Swift 1863-07-10 1864-01-11 185 days
William Durkee Williamson 1821-05-28 1821-12-05 191 days
Samuel Adams 1844-04-29 1844-11-09 194 days
David Holmes 1826-01-07 1826-07-25 199 days
Ole H. Olson 1934-06-21 1935-01-07 200 days
William Woods Holden 1865-05-29 1865-12-15 200 days
Claiborne Fox Jackson 1861-01-03 1861-07-23 201 days
Charles Hobby Pond 1853-10-13 1854-05-03 202 days
Henry Smith 1805-10-15 1806-05-07 204 days
James Dixon Black 1919-05-19 1919-12-09 204 days
Jay Bowerman 1910-06-17 1911-01-11 208 days
Benjamin Franklin Flanders 1867-06-03 1868-01-02 213 days
Charles Thomas 1823-06-20 1824-01-20 214 days
Richard Arkwright Snelling 1991-01-10 1991-08-13 215 days
William Marvin 1865-05-19 1865-12-20 215 days
James Elroy Risch 2006-05-26 2007-01-01 220 days
Thomas Welles Bartley 1844-04-15 1844-12-03 232 days
Edward Clark 1861-03-16 1861-11-07 236 days
Hancock Lee Jackson 1857-02-27 1857-10-22 237 days
Samuel Harvey Shapiro 1968-05-21 1969-01-13 237 days
Elias Petty Seeley 1833-02-27 1833-10-25 240 days
George Whitman Hendee 1870-02-07 1870-10-06 241 days
James Fairman Fielder 1913-03-01 1913-10-28 241 days
Wilson Godfrey Harvey 1922-05-20 1923-01-16 241 days
William Nelson Runyon 1919-05-16 1920-01-13 242 days
William Wyatt Bibb 1819-11-09 1820-07-10 244 days
Barnabas Kelet Henagan 1840-04-07 1840-12-09 246 days
John Adam Treutlen 1777-05-08 1778-01-10 247 days
Washington Montgomery Bartlett 1887-01-08 1887-09-12 247 days
Charles Polk Jr.  1836-05-09 1837-01-17 253 days
Thomas Talbot 1874-04-29 1875-01-07 253 days
Emmett Forest Branch 1924-04-30 1925-01-12 257 days
Othniel Looker 1814-03-24 1814-12-08 259 days
Foster McGowan Voorhees 1898-01-31 1898-10-18 260 days
William Temple 1846-05-03 1847-01-19 261 days
Frederick Bates 1824-11-15 1825-08-04 262 days
Daniel Thomas McCarty 1953-01-06 1953-09-28 265 days
George William Smith 1811-04-03 1811-12-26 267 days
Thomas Wilson Dorr 1842-05-01 1843-01-23 267 days
Samuel Moore 1831-03-03 1831-11-26 268 days
Walter Walford Johnson 1950-04-15 1951-01-09 269 days
Matthew Harvey 1830-06-03 1831-02-28 270 days
John Isaac Guion 1851-02-03 1851-11-04 274 days
Caleb Rodney 1822-04-16 1823-01-21 280 days
John Munford Gregory 1842-03-31 1843-01-05 280 days
Jose Antonio Romualdo Pacheco 1875-02-27 1875-12-09 285 days
Meredith Miles Marmaduke 1844-02-09 1844-11-20 285 days
Francis Moore Dimond 1853-07-20 1854-05-02 286 days
William Sulzer 1912-12-31 1913-10-17 290 days
Morley Isaac Griswold 1934-03-21 1935-01-07 292 days
Pierre Augustin Charles Bourguignon Derbigny 1828-12-15 1829-10-06 295 days
Edward Kavanagh 1843-03-07 1844-01-01 300 days
Thomas Burke 1781-06-26 1782-04-22 300 days
John Wood 1860-03-18 1861-01-14 302 days
Dennis Herron Murphree 1927-03-18 1928-01-16 304 days
James Coughlin Shannon 1948-03-07 1949-01-05 304 days
George Walton 1789-01-07 1789-11-09 306 days
William L. Greenly 1847-03-03 1848-01-03 306 days
James Wright Gordon 1841-02-23 1842-01-03 314 days
John Calloway Walton 1923-01-08 1923-11-19 315 days
Joseph Hartwell Williams 1857-02-25 1858-01-06 315 days
Wager Swayne 1867-03-02 1868-01-11 315 days
Samuel Turell Armstrong 1835-03-01 1836-01-13 318 days
Thomas Lowry Young 1877-03-02 1878-01-14 318 days
Charles Clinton Gossett 1945-01-01 1945-11-17 320 days
James Sykes 1801-03-03 1802-01-19 322 days
Earl Kemp Long 1939-06-26 1940-05-14 323 days
Richard Manning Jefferies 1942-03-02 1943-01-19 323 days
Nathaniel Pitcher 1828-02-11 1828-12-31 324 days
Johnathan Glidden Hunton 1830-02-09 1831-01-05 330 days
William Willard Preble Hall 1864-01-31 1865-01-02 337 days
James Edward Boyd 1892-02-08 1893-01-13 340 days
William Dunlap Simpson 1879-09-26 1880-09-01 341 days
Donald Thomas DiFrancesco 2001-01-31 2002-01-08 342 days
Paris Chipman Dunning 1848-12-27 1849-12-05 343 days
Joseph Robinson Bodwell 1887-01-05 1887-12-15 344 days
Charles Goldsborough 1819-01-08 1819-12-20 346 days
George Handley 1788-01-26 1789-01-07 347 days
Moses Gill 1799-06-07 1800-05-20 347 days
Elmo Everett Smith 1956-02-01 1957-01-14 348 days
Jeffrey William Colyer 2018-01-31 2019-01-14 348 days
Joshua Gaskill Newbold 1877-02-01 1878-01-17 350 days
John Staniford Robinson 1853-10-27 1854-10-13 351 days
William Richardson Davie 1798-12-07 1799-11-23 351 days
Harold John Arthur 1950-01-16 1951-01-04 353 days
John Houstoun 1778-01-10 1778-12-29 353 days
Thomas Walker Gilmer 1840-03-31 1841-03-20 354 days
Marcus Morton 1840-01-18 1841-01-07 355 days
Clinton Amos Clauson 1959-01-07 1959-12-30 357 days
Edward Kent 1841-01-13 1842-01-05 357 days
Emory Washburn 1854-01-12 1855-01-04 357 days
Marcus Morton 1843-01-17 1844-01-09 357 days
Allen Trimble 1822-01-04 1822-12-28 358 days
Philemon Dickerson 1836-11-03 1837-10-27 358 days
Thomas Edward Campbell 1917-01-01 1917-12-25 358 days
Winfield Scott Hammond 1915-01-05 1915-12-30 359 days
Herbert Warren Ladd 1891-05-26 1892-05-21 361 days
Daniel Franklin Davis 1880-01-17 1881-01-13 362 days
Jeremiah Smith 1809-06-08 1810-06-05 362 days
John Henry 1797-11-17 1798-11-14 362 days
Joseph Bloomfield 1801-10-31 1802-10-28 362 days
Byron Diman 1846-05-06 1847-05-04 363 days
John Henry Clifford 1853-01-14 1854-01-12 363 days
John Houstoun 1784-01-09 1785-01-06 363 days
Thomas King Carroll 1830-01-15 1831-01-13 363 days
William Plumer 1812-06-05 1813-06-03 363 days
Abner Coburn 1863-01-07 1864-01-06 364 days
Alexander Hamilton Holley 1857-05-06 1858-05-05 364 days
Anson Peaslee Morrill 1855-01-03 1856-01-02 364 days
Anthony Colby 1846-06-04 1847-06-03 364 days
Benjamin Franklin Butler 1883-01-04 1884-01-03 364 days
Benjamin Pierce 1827-06-07 1828-06-05 364 days
Benjamin Pierce 1829-06-04 1830-06-03 364 days
Edward Kent 1838-01-03 1839-01-02 364 days
Erastus Fairbanks 1860-10-12 1861-10-11 364 days
Henry Dutton 1854-05-03 1855-05-02 364 days
Herbert Warren Ladd 1889-05-28 1890-05-27 364 days
Isaac Toucey 1846-05-06 1847-05-05 364 days
Isaac Wilbour 1806-05-07 1807-05-06 364 days
Jacob Stout 1820-01-18 1821-01-16 364 days
James Adams Weston 1871-06-08 1872-06-06 364 days
James Webb Throckmorton 1866-08-09 1867-08-08 364 days
John Bell 1828-06-05 1829-06-04 364 days
John Mattocks 1843-10-13 1844-10-11 364 days
John McDougal 1851-01-09 1852-01-08 364 days
John William Davis 1890-05-27 1891-05-26 364 days
Joseph Roswell Hawley 1866-05-02 1867-05-01 364 days
Levi Woodbury 1823-06-05 1824-06-03 364 days
Marshall Jewell 1869-05-05 1870-05-04 364 days
Nathaniel Bradley Baker 1854-06-08 1855-06-07 364 days
Royal Chapin Taft Sr.  1888-05-29 1889-05-28 364 days
Samuel Augustus Foot 1834-05-07 1835-05-06 364 days
Thomas Goodwin Turner 1859-05-31 1860-05-29 364 days
William Gaston 1875-01-07 1876-01-06 364 days
William Lewis Douglas 1905-01-05 1906-01-04 364 days
Aaron Ogden 1812-10-29 1813-10-29 365 days
Charles Jackson 1845-05-06 1846-05-06 365 days
Daniel Martin 1829-01-15 1830-01-15 365 days
Edward Telfair 1786-01-09 1787-01-09 365 days
George Michael Decker Hahn 1864-03-04 1865-03-04 365 days
Isaac Tichenor 1808-10-14 1809-10-14 365 days
Jesse Franklin 1820-12-07 1821-12-07 365 days
John Rutherfoord 1841-03-31 1842-03-31 365 days
William Sprague III 1838-05-02 1839-05-02 365 days
John Lambert 1802-10-28 1803-10-29 366 days
John Quincy Adams Brackett 1890-01-07 1891-01-08 366 days
John William Davis 1887-05-29 1888-05-29 366 days
Lyman Hall 1783-01-08 1784-01-09 366 days
Wyndham Robertson 1836-03-30 1837-03-31 366 days
Joseph Trumbull 1849-05-02 1850-05-04 367 days
Samuel Elbert 1785-01-06 1786-01-09 368 days
John Matthews 1782-01-31 1783-02-04 369 days
James Iredell Jr.  1827-12-08 1828-12-12 370 days
John Martin 1782-01-03 1783-01-08 370 days
Henry Waggaman Edwards 1833-05-01 1834-05-07 371 days
Israel Smith 1807-10-09 1808-10-14 371 days
Thomas Talbot 1879-01-02 1880-01-08 371 days
Charles Anderson Wickliffe 1839-08-27 1840-09-02 372 days
James Adams Weston 1874-06-03 1875-06-10 372 days
Samuel Wells 1856-01-02 1857-01-08 372 days
Robert Bowie 1811-11-16 1812-11-23 373 days
Alonzo Garcelon 1879-01-08 1880-01-17 374 days
Benjamin Smith 1810-12-01 1811-12-11 375 days
Benjamin Wiliams 1807-12-01 1808-12-12 377 days
George Wylie Paul Hunt 1917-12-25 1919-01-06 377 days
James Edward English 1870-05-04 1871-05-16 377 days
Charles Malcolm Wilson 1973-12-18 1974-12-31 378 days
James Fisher Robinson 1862-08-18 1863-09-01 379 days
Erastus Fairbanks 1852-10-11 1853-10-27 381 days
George Mattthews 1787-01-09 1788-01-26 382 days
Jacques Dupre 1830-01-14 1831-01-31 382 days
Albert Pickett Morehouse 1887-12-28 1889-01-14 383 days
Charles Dean Kimball 1901-12-16 1903-01-03 383 days
Sebastian Streeter Marble 1887-12-15 1889-01-02 384 days
Peter Hardeman Burnett 1849-12-20 1851-01-09 385 days
Samuel Jordan Kirkwood 1876-01-13 1877-02-01 385 days
William Elmer Holt 1935-12-15 1937-01-04 386 days
Albin Walter Norblad Sr.  1929-12-21 1931-01-12 387 days
Richard Dobbs Spaight Jr.  1835-12-10 1836-12-31 387 days
Donald Grant Nutter 1961-01-02 1962-01-25 388 days
John Anthony Quitman 1850-01-10 1851-02-03 389 days
Archibald Bulloch 1776-01-22 1777-02-22 397 days
John LaRue Helm 1850-07-31 1851-09-02 398 days
Edward Rutledge 1798-12-18 1800-01-23 401 days
Christopher Gore 1809-05-01 1810-06-10 405 days
Thomas Stockton 1845-01-21 1846-03-02 405 days
Ira Joy Chase 1891-11-23 1893-01-09 413 days
John Miller 1889-11-20 1891-01-07 413 days
William Woodbridge 1840-01-07 1841-02-23 413 days
Arnold Williams 1945-11-17 1947-01-06 415 days
John Davis 1834-01-09 1835-03-01 416 days
Rutherford Birchard Hayes 1876-01-10 1877-03-02 417 days
Andrew Jackson Hamilton 1865-06-16 1866-08-09 419 days
Alpheus Felch 1846-01-05 1847-03-03 422 days
James Lukens McConaughy 1947-01-08 1948-03-07 424 days
Olene Walker 2003-11-05 2005-01-03 425 days
John Fairfield 1842-01-05 1843-03-07 426 days
Henry Toole Clark 1861-07-07 1862-09-08 428 days
John Ellis Martineau 1927-01-11 1928-03-14 428 days
Richard James Codey 2004-11-15 2006-01-17 428 days
Robert McClelland 1852-01-01 1853-03-07 431 days
Abner Nash 1780-04-20 1781-06-26 432 days
Ossian Bingley Hart 1873-01-07 1874-03-18 435 days
John Hubert Hall 1947-10-30 1949-01-10 438 days
William King 1820-03-15 1821-05-28 439 days
Martin Henry Glynn 1913-10-17 1914-12-31 440 days
Eliot Laurence Spitzer 2006-12-31 2008-03-17 442 days
Robert Milligan McLane 1884-01-09 1885-03-27 443 days
John Tyler 1825-12-11 1827-03-04 448 days
Samuel Houston 1859-12-21 1861-03-16 451 days
Daniel Haines 1843-10-27 1845-01-21 452 days
Evan Mecham 1987-01-05 1988-04-04 455 days
John Collins 1821-01-16 1822-04-16 455 days
John Edward Jones 1895-01-07 1896-04-10 459 days
Andrew W. Hockenhull 1933-09-25 1935-01-01 463 days
Charley Eugene Johns 1953-09-28 1955-01-04 463 days
Gabriel Moore 1829-11-25 1831-03-03 463 days
Mahlon Dickerson 1815-10-26 1817-02-01 464 days
Daniel Rogers 1797-09-30 1799-01-09 466 days
David Brydie Mitchell 1815-11-20 1817-03-04 470 days
Frank Williamson Benson 1909-03-01 1910-06-17 473 days
Mark Stephen Schweiker 2001-10-05 2003-01-21 473 days
Lurleen Burns Wallace 1967-01-16 1968-05-07 477 days
Joseph Eugene Kernan III 2003-09-13 2005-01-10 485 days
Patrick Noble 1838-12-07 1840-04-07 487 days
Thomas Bibb 1820-07-10 1821-11-09 487 days
Wilson Shannon 1842-12-14 1844-04-15 488 days
Henry Watkins Allen 1864-01-25 1865-06-02 494 days
William Smith 1864-01-01 1865-05-09 494 days
Kathleen Courtney Hochul 2021-08-23 2023-01-01 496 days
John Letcher 1860-01-01 1861-05-15 500 days
Erich Robert Greitens 2017-01-09 2018-06-01 508 days
Thomas Hill Watts Sr.  1863-12-01 1865-05-03 519 days
John Marshall Slaton 1912-01-25 1913-06-28 520 days
Henry Horatio Wells 1868-04-04 1869-09-21 535 days
John Breathitt 1832-09-04 1834-02-21 535 days
Roger Griswold 1811-05-09 1812-10-25 535 days
William Langer 1932-12-31 1934-06-21 537 days
Martin James Schreiber 1977-07-06 1979-01-03 546 days
John David Vanderhoof 1973-07-16 1975-01-14 547 days
Stephen Heard 1780-02-18 1781-08-18 547 days
Abram Marshall Scott 1832-01-09 1833-07-12 550 days
Charles Clark 1863-11-16 1865-05-22 553 days
George Howard 1831-07-11 1833-01-17 556 days
James Sullivan 1807-05-29 1808-12-10 561 days
Lamartine Griffin Hardman 1931-06-27 1933-01-10 563 days
Samuel Houston 1827-10-01 1829-04-16 563 days
William Gregory 1900-05-29 1901-12-16 566 days
Frank A. Briggs 1897-01-06 1898-08-09 580 days
David Harvey Goodell 1889-06-06 1891-01-08 581 days
Penleton Murrah 1863-11-05 1865-06-11 584 days
Stephen Fowler Chadwick 1877-02-01 1878-09-11 587 days
Henry Hastings Sibley 1858-05-24 1860-01-02 588 days
Oramel Hinckley Simpson 1926-10-11 1928-05-21 588 days
Francis Preston Blair Lee III 1977-06-04 1979-01-15 590 days
William Hartford James 1871-06-02 1873-01-13 591 days
John Brough 1864-01-11 1865-08-29 596 days
William Sanford Pennington 1813-10-29 1815-06-19 598 days
Clement Comer Clay 1835-11-21 1837-07-17 604 days
Xenophon Overton Pindall 1907-05-14 1909-01-11 608 days
Melvin Ernest Thompson 1947-03-18 1948-11-17 610 days
Ralph Gilmour Brooks 1959-01-08 1960-09-09 610 days
Josiah Tattnall 1801-03-03 1802-11-04 611 days
Fenimore Chatterton 1903-04-28 1905-01-02 615 days
Ezra Perin Savage 1901-05-01 1903-01-08 617 days
William Eustis 1823-05-31 1825-02-06 617 days
Gunning Bedford Sr.  1796-01-19 1797-09-30 620 days
Mark Vincent Parkinson 2009-04-28 2011-01-10 622 days
Frank Bentley Weeks 1909-04-21 1911-01-05 624 days
Edward Salomon 1862-04-19 1864-01-04 625 days
Walter Dale Miller 1993-04-19 1995-01-07 628 days
James Lusk Alcorn 1870-03-10 1871-11-30 630 days
Jane Maria Swift 2001-04-10 2003-01-02 632 days
Adelbert C. Ames 1868-06-15 1870-03-10 633 days
Jim Folsom Jr.  1993-04-22 1995-01-16 634 days
John Treadwell 1809-08-07 1811-05-09 640 days
William Bradford Ross 1923-01-01 1924-10-02 640 days
Louis Alfred Wiltz 1880-01-14 1881-10-16 641 days
Thomas Kirker 1807-03-04 1808-12-12 649 days
Coles Bashford 1856-03-25 1858-01-04 650 days
Thomas Michael Holt 1891-04-07 1893-01-18 652 days
William Judson Holloway 1929-03-20 1931-01-01 652 days
William Tharp Watson 1895-04-08 1897-01-19 652 days
Luren Dudley Dickinson 1939-03-16 1941-01-01 657 days
Ozra Amander Hadley 1871-03-17 1873-01-06 661 days
Jesse Fuller McDonald 1905-03-17 1907-01-08 662 days
Andrew Parsons 1853-03-07 1855-01-03 667 days
John Isaac Cox 1905-03-21 1907-01-17 667 days
William Bradley Umstead 1953-01-08 1954-11-07 668 days
James Pinckney Henderson 1846-02-19 1847-12-21 670 days
Daniel J. McKee 2021-03-02 2023-01-06 675 days
Elisha Baxter 1873-01-06 1874-11-12 675 days
Kieth Harvey Miller 1969-01-29 1970-12-07 677 days
Frank Lee Houx 1917-02-26 1919-01-06 679 days
James Black Groome 1874-03-04 1876-01-12 679 days
Washington Ellsworth Lindsey 1917-02-18 1919-01-01 682 days
Alonzo Monroe Clark 1931-02-18 1933-01-02 684 days
Seabury Ford 1849-01-22 1850-12-12 689 days
John Jordan Crittenden 1848-09-06 1850-07-31 693 days
Oliver Wolcott Sr.  1796-01-05 1797-12-01 696 days
Edwin Leard Mechem 1961-01-01 1962-11-30 698 days
Amasa Leland Stanford 1862-01-10 1863-12-10 699 days
Albert Smith Marks 1879-02-16 1881-01-17 701 days
Charles Lawrence Robinson 1861-02-09 1863-01-12 702 days
James Scott McCallum 2001-02-01 2003-01-06 704 days
Walter Welford 1935-02-02 1937-01-06 704 days
Thomas Pinckney 1787-02-20 1789-01-26 706 days
Edmund Randolph 1786-11-30 1788-11-12 713 days
Spiro Theodore Agnew 1967-01-25 1969-01-07 713 days
Olin DeWitt Talmadge Johnston 1943-01-19 1945-01-02 714 days
Henry Massie Rector 1860-11-16 1862-11-04 718 days
David Stone 1808-12-12 1810-12-01 719 days
Montfort Stokes 1830-12-18 1832-12-06 719 days
Duncan McArthur 1830-12-18 1832-12-07 720 days
Harris Merrill Plaisted 1881-01-13 1883-01-03 720 days
Lorenzo Crounse 1893-01-13 1895-01-03 720 days
Martin Gittenden 1813-10-23 1815-10-14 721 days
Nathaniel Alexander 1805-12-10 1807-12-01 721 days
Arnoldus Vanderhorst 1794-12-17 1796-12-08 722 days
Frank Durward White 1981-01-19 1983-01-11 722 days
Joseph Washington McClurg 1869-01-12 1871-01-04 722 days
Marshall Jewell 1871-05-16 1873-05-07 722 days
Franklin Israel Moses Jr.  1872-12-07 1874-12-01 724 days
Frederick Lee Hall 1955-01-10 1957-01-03 724 days
John Stewart Barry 1850-01-07 1852-01-01 724 days
John Marshall Hamilton 1883-02-05 1885-01-30 725 days
Robert Love Taylor 1897-01-21 1899-01-16 725 days
David Rogerson Williams 1814-12-10 1816-12-05 726 days
Elbridge Gerry 1810-06-10 1812-06-05 726 days
Henry Stuart Foote 1852-01-10 1854-01-05 726 days
Samuel H. Huntington 1808-12-12 1810-12-08 726 days
Andrew Horace Burke 1891-01-07 1893-01-03 727 days
Charles Bartlett Andrews 1879-01-09 1881-01-05 727 days
Charles Henry Hardin 1875-01-12 1877-01-08 727 days
Charles Warren Lippitt 1895-05-29 1897-05-25 727 days
Ezekiel Albert Straw 1872-06-06 1874-06-03 727 days
George Herbert Prouty 1908-10-08 1910-10-05 727 days
John Gately Downey 1860-01-14 1862-01-10 727 days
John Hugh Means 1850-12-13 1852-12-09 727 days
John Lyde Wilson 1822-12-07 1824-12-03 727 days
Nathaniel Springer Berry 1861-06-06 1863-06-03 727 days
Pierce Mason Butler 1836-12-10 1838-12-07 727 days
Roger Allin 1895-01-10 1897-01-06 727 days
Warren Everett Green 1931-01-06 1933-01-02 727 days
Abiram Chamberlain 1903-01-07 1905-01-04 728 days
Albert Oscar Brown 1921-01-06 1923-01-04 728 days
Alva Adams 1887-01-11 1889-01-08 728 days
Alva Adams 1897-01-12 1899-01-10 728 days
Alvin Hawkins 1881-01-17 1883-01-15 728 days
Arthur Griswold Crane 1949-01-03 1951-01-01 728 days
Asahel Peck 1874-10-08 1876-10-05 728 days
Ashton Cokayne Shallenberger 1909-01-07 1911-01-05 728 days
Augustus Osborn Bourn 1883-05-29 1885-05-26 728 days
Barzilla Worth Clark 1937-01-04 1939-01-02 728 days
Benjamin Franklin Prescott 1877-06-07 1879-06-05 728 days
Benjamin Harrison Eaton 1885-01-13 1887-01-11 728 days
Bert Manfred Fernald 1909-01-06 1911-01-04 728 days
Bourke Blakemore Hickenlooper 1943-01-14 1945-01-11 728 days
Burton Melvin Cross 1953-01-07 1955-01-05 728 days
C. William O’Neill 1957-01-14 1959-01-12 728 days
Charles Francis Hurley 1937-01-07 1939-01-05 728 days
Charles James Bell 1904-10-06 1906-10-04 728 days
Charles Manley Smith 1935-01-10 1937-01-07 728 days
Charles Paine 1841-10-15 1843-10-13 728 days
Charles Spalding Thomas 1899-01-10 1901-01-08 728 days
Charles William Tobey 1929-01-03 1931-01-01 728 days
Charles Winslow Gates 1915-01-07 1917-01-04 728 days
Chase Addison Clark 1941-01-06 1943-01-04 728 days
Chauncey Fitch Cleveland 1842-05-04 1844-05-01 728 days
Chester Bliss Bowles 1949-01-05 1951-01-03 728 days
Chester Bradley Jordan 1901-01-03 1903-01-01 728 days
Christopher Del Sesto 1959-01-06 1961-01-03 728 days
Clarence Alfred Bottolfsen 1943-01-04 1945-01-01 728 days
Clarence Joseph Morley 1925-01-13 1927-01-11 728 days
Clark Bissell 1847-05-05 1849-05-02 728 days
Clyde Martin Reed 1929-01-14 1931-01-12 728 days
Coe Isaac Crawford 1907-01-08 1909-01-05 728 days
Craig R. Benson 2003-01-09 2005-01-06 728 days
Daniel Webster Turner 1931-01-15 1933-01-12 728 days
David Ignatius Walsh 1914-01-08 1916-01-06 728 days
David Tod 1862-01-13 1864-01-11 728 days
Davis Hanson Waite 1893-01-10 1895-01-08 728 days
Eben Sumner Draper 1909-01-07 1911-01-05 728 days
Ebenezer Jolls Ormsbee 1886-10-07 1888-10-04 728 days
Edmund Needham Morrill 1895-01-14 1897-01-11 728 days
Edward Curtis Smith 1898-10-06 1900-10-04 728 days
Edwin Carl Johnson 1955-01-11 1957-01-08 728 days
Elias Milton Ammons 1913-01-14 1915-01-12 728 days
Elisha Harris 1847-05-04 1849-05-01 728 days
Elmer Austin Benson 1937-01-04 1939-01-02 728 days
Emery John San Souci 1921-01-04 1923-01-02 728 days
Eurith Dickenson Rivers 1941-01-14 1943-01-12 728 days
Everett J. Lake 1921-01-05 1923-01-03 728 days
Ezra Butler 1826-10-13 1828-10-10 728 days
Francis Adams Cherry Sr.  1953-01-13 1955-01-11 728 days
Francis Marion Drake 1896-01-16 1898-01-13 728 days
Francis Richard Lubbock 1861-11-07 1863-11-05 728 days
Frank Bartlett Willis 1915-01-11 1917-01-08 728 days
Frank Leroy Farrar 1969-01-07 1971-01-05 728 days
Frank West Rollins 1899-01-05 1901-01-03 728 days
Frank Williams Hunt 1901-01-07 1903-01-05 728 days
Franklin Swift Billings 1925-01-08 1927-01-06 728 days
Fred Herbert Brown 1923-01-04 1925-01-01 728 days
Frederick Holbrook 1861-10-11 1863-10-09 728 days
Frederick Smyth 1865-06-08 1867-06-06 728 days
Frederick William Plaisted 1911-01-04 1913-01-01 728 days
George Alfred Carlson 1915-01-12 1917-01-09 728 days
George Allen Ramsdell 1897-01-07 1899-01-05 728 days
George Hartshorn Hodges 1913-01-13 1915-01-11 728 days
George Herbert Utter 1905-01-03 1907-01-01 728 days
George Hoadly 1884-01-14 1886-01-11 728 days
George Payne McLean 1901-01-09 1903-01-07 728 days
George Rockingham Gilmer 1837-11-08 1839-11-06 728 days
George Wylie Paul Hunt 1931-01-05 1933-01-02 728 days
Harry Hines Woodring 1931-01-12 1933-01-09 728 days
Harry Lyman Davis 1921-01-10 1923-01-08 728 days
Henry Brewer Quinby 1909-01-07 1911-01-05 728 days
Henry Howard 1873-05-27 1875-05-25 728 days
Hiram Americus Tuttle 1891-01-08 1893-01-05 728 days
Hobart Baldwin Bigelow 1881-01-05 1883-01-03 728 days
Horace Fairbanks 1876-10-05 1878-10-03 728 days
Huntley Nowel Spaulding 1927-01-06 1929-01-03 728 days
James Edwin Campbell 1890-01-13 1892-01-11 728 days
James Hamilton Peabody 1903-01-13 1905-01-10 728 days
James Hartness 1921-01-06 1923-01-04 728 days
James Henry Brady 1909-01-04 1911-01-02 728 days
James Jackson 1796-01-15 1798-01-12 728 days
James Middleton Cox 1913-01-13 1915-01-11 728 days
James Taylor Lewis 1864-01-04 1866-01-01 728 days
John Anthony Notte Jr.  1961-01-03 1963-01-01 728 days
John Anthony Volpe 1961-01-05 1963-01-03 728 days
John Butler Smith 1893-01-05 1895-01-03 728 days
John Calhoun Philips 1929-01-07 1931-01-05 728 days
John Drayton 1808-12-10 1810-12-08 728 days
John Hardy Steele 1844-06-06 1846-06-04 728 days
John Joseph Hickey 1959-01-05 1961-01-02 728 days
John Lester Barstow 1882-10-05 1884-10-02 728 days
John Lewis Bates 1903-01-08 1905-01-05 728 days
John Long Routt 1891-01-13 1893-01-10 728 days
John McLane 1905-01-05 1907-01-03 728 days
John Michiner Haines 1913-01-06 1915-01-04 728 days
John Price Buchanan 1891-01-19 1893-01-16 728 days
John Taylor 1826-12-09 1828-12-06 728 days
John Tracy Morrison 1903-01-05 1905-01-02 728 days
John Whitcome Reynolds Jr.  1963-01-07 1965-01-04 728 days
John Whitnah Leedy 1897-01-11 1899-01-09 728 days
John Wolcott Stewart 1870-10-06 1872-10-03 728 days
Joseph Mackey Brown 1913-06-28 1915-06-26 728 days
Joseph Meriwether Terrell 1907-06-29 1909-06-26 728 days
Josiah Grout Jr.  1896-10-08 1898-10-06 728 days
Lemuel Hastings Arnold 1831-05-04 1833-05-01 728 days
Leonard James Farwell 1852-01-05 1854-01-02 728 days
Leslie Jensen 1937-01-05 1939-01-03 728 days
Levi Knight Fuller 1892-10-06 1894-10-04 728 days
Lorrin Alanson Cooke 1897-01-06 1899-01-04 728 days
Matthew Griswold 1784-05-13 1786-05-11 728 days
Maurice Joseph Tobin 1945-01-04 1947-01-02 728 days
Miriam Amanda Wallace Ferguson 1925-01-20 1927-01-18 728 days
Miriam Amanda Wallace Ferguson 1933-01-17 1935-01-15 728 days
Moody Currier 1885-06-04 1887-06-02 728 days
Moses Wisner 1859-01-05 1861-01-02 728 days
Myers Young Cooper 1929-01-14 1931-01-12 728 days
Myron Timothy Herrick 1904-01-11 1906-01-08 728 days
Nathaniel Head 1879-06-05 1881-06-02 728 days
Nellie Davis Tayloe Ross 1925-01-05 1927-01-03 728 days
Nelson Dingley Jr.  1874-01-07 1876-01-05 728 days
Nelson George Kraschel 1937-01-14 1939-01-12 728 days
Oakley Chester Curtis 1915-01-06 1917-01-03 728 days
Owen Vincent Coffin 1895-01-09 1897-01-06 728 days
Percival Wood Clement 1919-01-09 1921-01-06 728 days
Person Colby Cheney 1875-06-10 1877-06-07 728 days
Philip Fox La Follette 1931-01-05 1933-01-02 728 days
Ralph Edmund Herseth 1959-01-06 1961-01-03 728 days
Ralph Metcalf 1855-06-07 1857-06-04 728 days
Ralph Phillips Lowe 1858-01-13 1860-01-11 728 days
Rawghlie Clement Stanford 1937-01-04 1939-01-02 728 days
Richard M. Bishop 1878-01-14 1880-01-12 728 days
Robert Augustine Hurley 1941-01-08 1943-01-06 728 days
Robert Berkey Crosby 1953-01-08 1955-01-06 728 days
Robert Denison Holmes 1957-01-14 1959-01-12 728 days
Robert Emmet Quinn 1837-01-05 1839-01-03 728 days
Robert Perkins Bass 1911-01-05 1913-01-02 728 days
Robert Theodore Stafford 1959-01-08 1961-01-05 728 days
Robert Wilkinson Furnas 1873-01-13 1875-01-11 728 days
Rollin Simmons Woodruff 1907-01-09 1909-01-06 728 days
Ross Shaw Sterling 1931-01-20 1933-01-17 728 days
Roswell Farnham 1880-10-07 1882-10-05 728 days
Samuel Johnston 1787-12-20 1789-12-17 728 days
Samuel Whitney Hale 1883-06-07 1885-06-04 728 days
Samula Pearson Goddard Jr.  1965-01-04 1967-01-02 728 days
Stephen Miller 1864-01-11 1866-01-08 728 days
Stephen Royce 1854-10-13 1856-10-10 728 days
Teller Ammons 1937-01-12 1939-01-10 728 days
Thomas Carney 1863-01-12 1865-01-09 728 days
Thomas Corwin 1840-12-16 1842-12-14 728 days
Thomas Jefferson Terral 1925-01-13 1927-01-11 728 days
Thomas John Herbert 1947-01-13 1949-01-10 728 days
Vernon Wallace Thomson 1957-01-07 1959-01-05 728 days
Walter Augustus Huxman 1937-01-11 1939-01-09 728 days
Walter Harriman 1867-06-06 1869-06-03 728 days
Walter Jodok Kohler Sr.  1929-01-07 1931-01-05 728 days
William Allen 1874-01-12 1876-01-10 728 days
William Amos Poynter 1899-01-05 1901-01-03 728 days
William Badger 1834-06-05 1836-06-02 728 days
William Dempster Hoard 1889-01-07 1891-01-05 728 days
William George Crosby 1853-01-05 1855-01-03 728 days
William Haile 1857-06-04 1859-06-02 728 days
William Haydon Burns 1965-01-05 1967-01-03 728 days
William Henry Avery 1965-01-11 1967-01-09 728 days
William Henry Upham 1895-01-07 1897-01-04 728 days
William Paul Dillingham 1888-10-04 1890-10-02 728 days
William Robert Taylor 1874-01-05 1876-01-03 728 days
William Slade Jr.  1844-10-11 1846-10-09 728 days
Willis Joshua Bailey 1903-01-12 1905-01-09 728 days
Carl Gunderson 1925-01-06 1927-01-05 729 days
David Peter Lewis 1872-11-25 1874-11-24 729 days
Henry Baldwin Harrison 1885-01-08 1887-01-07 729 days
James Hopkins Adams 1854-12-11 1856-12-09 729 days
John Abner Mead 1910-10-05 1912-10-03 729 days
John Gill Shorter 1861-12-02 1863-12-01 729 days
John Peter Richardson II 1840-12-09 1842-12-08 729 days
Robert Young Hayne 1832-12-10 1834-12-09 729 days
Samuel Demeritt Felker 1913-01-02 1915-01-01 729 days
William Langer 1937-01-06 1939-01-05 729 days
William Wallace Stickney 1900-10-04 1902-10-03 729 days
Archibald Roane 1801-09-23 1803-09-23 730 days
Arthur Thomas Hannett 1925-01-01 1927-01-01 730 days
Benjamin Gratz Brown 1871-01-04 1873-01-03 730 days
Charles Manly 1849-01-01 1851-01-01 730 days
Chase Salmon Osborn 1911-01-02 1913-01-01 730 days
Clifford Joy Rogers 1953-01-03 1955-01-03 730 days
Cushman Kellogg Davis 1874-01-07 1876-01-07 730 days
David Howell Jerome 1881-01-01 1883-01-01 730 days
Edwin Leard Mechem 1957-01-01 1959-01-01 730 days
Frank Swett Black 1896-12-31 1898-12-31 730 days
Frank Wayland Higgins 1904-12-31 1906-12-31 730 days
Hamilton Fish 1848-12-31 1850-12-31 730 days
Hardin Richard Runnels 1857-12-21 1859-12-21 730 days
Hiram George Runnels 1833-11-20 1835-11-20 730 days
Horatio Seymour 1852-12-31 1854-12-31 730 days
James Burchill Richardson 1802-12-08 1804-12-07 730 days
James Henry Hammond 1842-12-08 1844-12-07 730 days
John Adams Dix 1872-12-31 1874-12-31 730 days
John Alsop King 1856-12-31 1858-12-31 730 days
John Burley Swainson 1961-01-01 1963-01-01 730 days
John Geddes 1818-12-08 1820-12-07 730 days
John Neely Johnson 1856-01-09 1858-01-08 730 days
Joseph Alston 1812-12-10 1814-12-10 730 days
Littleton Waller Tazewell 1834-03-31 1836-03-30 730 days
Merritt Cramer Mechem 1921-01-01 1923-01-01 730 days
Murray Delos Van Wagoner 1941-01-01 1943-01-01 730 days
Nathan Lewis Miller 1920-12-31 1922-12-31 730 days
Neill Smith Brown 1847-10-17 1849-10-16 730 days
Patrick Henry 1784-11-30 1786-11-30 730 days
Paul Dillingham Jr.  1865-10-13 1867-10-13 730 days
Robert Burns Lindsay 1870-11-26 1872-11-25 730 days
Russel Alexander Alger 1885-01-01 1887-01-01 730 days
Ryland Fletcher 1856-10-10 1858-10-10 730 days
Silas Wright Jr.  1844-12-31 1846-12-31 730 days
Theodore Roosevelt Jr.  1898-12-31 1900-12-31 730 days
Thomas Bennett Jr.  1820-12-07 1822-12-07 730 days
Thomas James Churchill 1881-01-13 1883-01-13 730 days
Tilghman Mayfield Tucker 1842-01-10 1844-01-10 730 days
William Alfred Comstock 1933-01-01 1935-01-01 730 days
William Erskine Stevenson 1869-03-04 1871-03-04 730 days
William Francis Murphy 1937-01-01 1939-01-01 730 days
William Trousdale 1849-10-16 1851-10-16 730 days
Albert Houston Roberts 1919-01-15 1921-01-15 731 days
Alfred Alexander Taylor 1921-01-15 1923-01-16 731 days
Alfred Emanuel Smith 1918-12-31 1920-12-31 731 days
Andrew Ryan McGill 1887-01-09 1889-01-09 731 days
Charles Kilbourne Williams 1850-10-11 1852-10-11 731 days
Edwin Baruch Winans 1891-01-01 1893-01-01 731 days
Frank Dwight Fitzgerald 1935-01-01 1937-01-01 731 days
George Tyler Wood 1847-12-21 1849-12-21 731 days
Gordon Weaver Browning 1937-01-15 1939-01-16 731 days
Horace Eaton 1846-10-09 1848-10-09 731 days
Horatio Seymour 1862-12-31 1864-12-31 731 days
James Fielding Hinkle 1923-01-01 1925-01-01 731 days
James Paul Clarke 1895-01-18 1897-01-18 731 days
John Alden Dix 1910-12-31 1912-12-31 731 days
John B. Weller 1858-01-08 1860-01-09 731 days
John Burroughs 1959-01-01 1961-01-01 731 days
John Field Simms Jr.  1955-01-01 1957-01-01 731 days
John Henry Bartlett 1919-01-06 1921-01-06 731 days
John Langdon 1810-06-05 1812-06-05 731 days
John Young 1846-12-31 1848-12-31 731 days
Johnson Hagood 1880-11-30 1882-12-01 731 days
Joseph Christopher Yates 1822-12-31 1824-12-31 731 days
Joseph Vance 1836-12-12 1838-12-13 731 days
Joseph Warren Matthews 1848-01-10 1850-01-10 731 days
Josiah Williams Begole 1883-01-01 1885-01-01 731 days
Kimber Cornellus Sigler 1947-01-01 1949-01-01 731 days
Levi Parsons Morton 1894-12-31 1896-12-31 731 days
Lucius Fayette Clark Garvin 1903-01-03 1905-01-03 731 days
Myron Holley Clark 1854-12-31 1856-12-31 731 days
Octaviano Ambrosio Larrazolo 1919-01-01 1921-01-01 731 days
Robert Francis Withers Allston 1856-12-09 1858-12-10 731 days
Samuel Jones Tilden 1874-12-31 1876-12-31 731 days
Washington Hunt 1850-12-31 1852-12-31 731 days
Whitemarsh Benjamin Seabrook 1848-12-12 1850-12-13 731 days
Wilber Marion Brucker 1931-01-01 1933-01-01 731 days
William Aiken Jr.  1844-12-07 1846-12-08 731 days
William Calvin Oates 1894-12-01 1896-12-01 731 days
William Christian Bouck 1842-12-31 1844-12-31 731 days
Wilson Cary Nicholas 1814-12-11 1816-12-11 731 days
Carlos Coolidge 1848-10-09 1850-10-11 732 days
Charles Lynch 1836-01-07 1838-01-08 732 days
Charles Pinckney 1806-12-09 1808-12-10 732 days
George McDuffie 1834-12-09 1836-12-10 732 days
James Hamilton Jr.  1830-12-09 1832-12-10 732 days
James Knox Polk 1839-10-14 1841-10-15 732 days
John Lawrence Manning 1852-12-09 1854-12-11 732 days
Milledge Luke Bonham 1862-12-17 1864-12-18 732 days
Paul Hamilton 1804-12-07 1806-12-09 732 days
Reuben Chapman 1847-12-16 1849-12-17 732 days
Rolland Harty Spaulding 1915-01-01 1917-01-02 732 days
Spencer James Cox 2021-01-04 2023-01-06 732 days
William Bowen Campbell 1851-10-16 1853-10-17 732 days
Aaron Venable Brown 1845-10-14 1847-10-17 733 days
Andrew Pickens 1816-12-05 1818-12-08 733 days
Francis Wilkinson Pickens 1860-12-14 1862-12-17 733 days
Frank Aloysius Barrett 1951-01-01 1953-01-03 733 days
George Peabody Wetmore 1885-05-26 1887-05-29 733 days
George Poindexter 1820-01-05 1822-01-07 733 days
Henry Middleton 1810-12-08 1812-12-10 733 days
Hiland Hall 1858-10-10 1860-10-12 733 days
James Bowdoin II 1785-05-27 1787-05-30 733 days
James Henderson Berry 1883-01-13 1885-01-15 733 days
John Boardman Page 1867-10-13 1869-10-15 733 days
John Francis Mercer 1801-11-10 1803-11-13 733 days
Stephen Decatur Miller 1828-12-06 1830-12-09 733 days
Thomas Jefferson 1779-06-01 1781-06-03 733 days
George Sewall Boutwell 1851-01-11 1853-01-14 734 days
Henry Wilder Keyes 1917-01-02 1919-01-06 734 days
John Griffith McCullough 1902-10-03 1904-10-06 734 days
Phineas Chapman Lounsbury 1887-01-07 1889-01-10 734 days
William Meade Fishback 1893-01-14 1895-01-18 734 days
Wilson Shannon 1838-12-13 1840-12-16 734 days
Albert George Schmedeman 1933-01-02 1935-01-07 735 days
Albert Wills McIntire 1895-01-08 1897-01-12 735 days
Arthur Jerard Weaver 1929-01-03 1931-01-08 735 days
Cadwallader Colden Washburn 1872-01-01 1874-01-05 735 days
Calvin Coolidge 1919-01-02 1921-01-06 735 days
Carroll Smalley Page 1890-10-02 1892-10-06 735 days
Charles Albert Busiel 1895-01-03 1897-01-07 735 days
Charles Augustus Templeton 1923-01-03 1925-01-07 735 days
Charles Henry Bell 1881-06-02 1883-06-07 735 days
Charles Henry Sawyer 1887-06-02 1889-06-06 735 days
Charles Miller Floyd 1907-01-03 1909-01-07 735 days
Chester Hardy Aldrich 1911-01-05 1913-01-09 735 days
Clarence Alfred Bottolfsen 1939-01-02 1941-01-06 735 days
David Johnson 1846-12-08 1848-12-12 735 days
Edward Follansbee Noyes 1872-01-08 1874-01-12 735 days
Elisha Dyer 1857-05-26 1859-05-31 735 days
Elmore Yocum Sarles 1905-01-04 1907-01-09 735 days
Endicott Peabody 1963-01-03 1965-01-07 735 days
Epaphroditus Ransom 1848-01-03 1850-01-07 735 days
Fletcher Dutton Proctor 1906-10-04 1908-10-08 735 days
Frank Darr Jackson 1894-01-11 1896-01-16 735 days
Frank Gilman Allen 1929-01-03 1931-01-08 735 days
Frank John Lausche 1945-01-08 1947-01-13 735 days
Frank Ray Keyser Jr.  1961-01-05 1963-01-10 735 days
Frederick Robert Zimmerman 1927-01-03 1929-01-07 735 days
George Edward Lounsbury 1899-01-04 1901-01-09 735 days
George Lawson Sheldon 1907-01-03 1909-01-07 735 days
George Rockingham Gilmer 1829-11-04 1831-11-09 735 days
George Tobey Anthony 1877-01-08 1879-01-13 735 days
George Washington Glick 1883-01-08 1885-01-12 735 days
Harrison Ludington 1876-01-03 1878-01-07 735 days
Henry Augustus Buchtel 1907-01-08 1909-01-12 735 days
Henry Bowen Anthony 1849-05-01 1851-05-06 735 days
Henry Hubbard 1842-06-02 1844-06-06 735 days
Henry Lippitt 1875-05-25 1877-05-29 735 days
Henry Roberts 1905-01-04 1907-01-09 735 days
Henry Styles Bridges 1935-01-03 1937-01-07 735 days
Horace French Graham 1917-01-04 1919-01-09 735 days
Howell Cobb 1851-11-05 1853-11-09 735 days
Hugh Gregg 1953-01-01 1955-01-06 735 days
Hugh Manson Dorsey 1921-06-25 1923-06-30 735 days
Ichabod Goodwin 1859-06-02 1861-06-06 735 days
Increase Sumner 1797-06-02 1799-06-07 735 days
Israel Washburn Jr.  1861-01-02 1863-01-07 735 days
Jack Robert Gage 1961-01-02 1963-01-07 735 days
Jacob Dolson Cox Jr.  1866-01-08 1868-01-13 735 days
James Benton Grant 1883-01-09 1885-01-13 735 days
James Bradley Orman 1901-01-08 1903-01-13 735 days
James Edward English 1867-05-01 1869-05-05 735 days
James Fenner 1843-05-02 1845-05-06 735 days
James Henry Hawley 1911-01-02 1913-01-06 735 days
James Henry Higgins 1907-01-01 1909-01-05 735 days
James Michael Curley 1935-01-03 1937-01-07 735 days
Jared Warner Williams 1847-06-03 1849-06-07 735 days
Job Adams Cooper 1889-01-08 1891-01-13 735 days
John Eugene Osborne 1893-01-02 1895-01-07 735 days
John Gilbert Winant 1925-01-01 1927-01-06 735 days
John Gregory Smith 1863-10-09 1865-10-13 735 days
John Lind 1899-01-02 1901-01-07 735 days
John Marshall Slaton 1915-06-26 1917-06-30 735 days
Jonathan McMillan Davis 1923-01-08 1925-01-12 735 days
Julius Caldeen Gunter 1917-01-09 1919-01-14 735 days
Julius Converse 1872-10-03 1874-10-08 735 days
Leo Arthur Hoegh 1955-01-13 1957-01-17 735 days
Luzon Buritt Morris 1893-01-04 1895-01-09 735 days
Michael Hoke Smith 1909-06-26 1911-07-01 735 days
Morell Keith Neville 1917-01-04 1919-01-09 735 days
Mortimer Robinson Proctor 1945-01-04 1947-01-09 735 days
Nahum Josiah Bachelder 1903-01-01 1905-01-05 735 days
Noah Martin 1852-06-03 1854-06-08 735 days
Norman Arthur Erbe 1961-01-12 1963-01-17 735 days
Onslow Stearns 1869-06-03 1871-06-08 735 days
Raymond Earl Baldwin 1939-01-04 1941-01-08 735 days
Redfield Proctor 1878-10-03 1880-10-07 735 days
Redfield Proctor Jr.  1923-01-04 1925-01-08 735 days
Robert Fiske Bradford 1947-01-02 1949-01-06 735 days
Robert Taylor Jones 1939-01-02 1941-01-06 735 days
Roger Sherman Baldwin 1844-05-01 1846-05-06 735 days
Samuel Everett Pingree 1884-10-02 1886-10-07 735 days
Samuel Harrison Elrod 1905-01-03 1907-01-08 735 days
Urban Andrain Woodbury 1894-10-04 1896-10-08 735 days
William Dennison Jr.  1860-01-09 1862-01-13 735 days
William Ellery Sweet 1923-01-09 1925-01-13 735 days
William Henry Gist 1858-12-10 1860-12-14 735 days
William McWillie 1857-11-16 1859-11-21 735 days
William Schley 1835-11-04 1837-11-08 735 days
William Smith Flynn 1923-01-02 1925-01-06 735 days
William Thomas Haines 1913-01-01 1915-01-06 735 days
William Thomas Minor 1855-05-02 1857-05-06 735 days
Charles Wayland Bryan 1923-01-03 1925-01-08 736 days
John Owen 1828-12-12 1830-12-18 736 days
Joseph Albree Gilmore 1863-06-03 1865-06-08 736 days
Joshua Lanier Martin 1845-12-10 1847-12-16 736 days
Lorenzo Dow Lewelling 1893-01-08 1895-01-14 736 days
Richard Dudley Hubbard 1877-01-03 1879-01-09 736 days
Richard Irvine Manning I 1824-12-03 1826-12-09 736 days
Rudolph George Perpich Sr.  1976-12-29 1979-01-04 736 days
Thomas MacDonald Waller 1883-01-03 1885-01-08 736 days
Eli C. D. Shortridge 1893-01-03 1895-01-10 737 days
Frederick Bartlett Fancher 1899-01-03 1901-01-10 737 days
Stephen Grover Cleveland 1882-12-31 1885-01-06 737 days
Benjamin Guerard 1783-02-04 1785-02-11 738 days
Mordecai Bartley 1844-12-03 1846-12-12 739 days
Silas Woodson 1873-01-03 1875-01-12 739 days
William Moultrie 1785-02-11 1787-02-20 739 days
Charles Pinckney 1796-12-08 1798-12-18 740 days
John Davis 1841-01-07 1843-01-17 740 days
John Fairfield 1839-01-02 1841-01-12 741 days
John William Griggs 1896-01-21 1898-01-31 741 days
William Jefferson Clinton 1979-01-09 1981-01-19 741 days
William Moultrie 1792-12-05 1794-12-17 742 days
Daniel Henry Chamberlain 1874-12-01 1876-12-14 744 days
Peter Early 1813-11-05 1815-11-20 745 days
Norman Bushnell Willey 1890-12-18 1893-01-02 746 days
Ransome Judson Williams 1945-01-02 1947-01-21 749 days
David Holmes 1817-12-10 1820-01-05 756 days
Knute Nelson 1893-01-04 1895-01-31 757 days
Charles Jones Jenkins 1865-12-14 1868-01-13 760 days
John Tyler Sr.  1808-12-12 1811-01-15 764 days
Zebulon Baird Vance 1877-01-01 1879-02-05 765 days
Ridgley Ceylon Powers 1871-11-30 1874-01-04 766 days
Amos Walker Barber 1890-11-24 1893-01-02 770 days
William Bebb 1846-12-12 1849-01-22 772 days
Thomas Woodrow Wilson 1911-01-17 1913-03-01 774 days
John Gary Evans 1894-12-04 1897-01-18 776 days
Richard Bennett Hubbard Jr.  1876-12-01 1879-01-21 781 days
Richard Bassett 1799-01-09 1801-03-03 783 days
Elisha Marshall Pease 1867-08-08 1869-09-30 784 days
John Benjamin Kendrick 1915-01-04 1917-02-26 784 days
William Pinkney Whyte 1872-01-10 1874-03-04 784 days
Walter Joseph Hickel 1966-12-05 1969-01-29 786 days
Augustus Hill Garland 1874-11-12 1877-01-11 791 days
Frederic Thomas Greenhalge 1894-01-04 1896-03-05 791 days
John Samuel Peters 1831-03-02 1833-05-01 791 days
James Beriah Frazier 1903-01-19 1905-03-21 792 days
Jared Irwin 1793-11-07 1796-01-15 799 days
Henry Simpson Johnston 1927-01-10 1929-03-20 800 days
William Hendricks 1822-12-05 1825-02-12 800 days
John Long Routt 1876-11-03 1879-01-14 802 days
Philip Allen 1851-05-06 1853-07-20 806 days
William Augustus Barstow 1854-01-02 1856-03-21 809 days
Daniel Gould Fowle 1889-01-17 1891-04-07 810 days
Elmer Lee Andersen 1961-01-02 1963-03-25 812 days
Adelbert C. Ames 1874-01-04 1876-03-29 815 days
James Madison Wells 1865-03-04 1867-06-03 821 days
Allen Miller Fletcher 1912-10-03 1915-01-07 826 days
Donald Stuart Russell 1963-01-15 1965-04-22 828 days
William Barrett Washburn 1872-01-04 1874-04-29 846 days
Walter Evans Edge 1917-01-16 1919-05-16 850 days
William Hasselden Ellerbe 1897-01-18 1899-06-02 865 days
William Hugh Smith 1868-07-14 1870-11-26 865 days
Henry Luse Fuqua Sr.  1924-05-19 1926-10-11 875 days
William Paterson 1790-10-29 1793-03-30 883 days
Edward Lloyd V 1809-06-09 1811-11-16 890 days
Beauford Halbert Jester 1947-01-21 1949-07-11 902 days
Curtis Hooks Brogden 1874-07-11 1877-01-01 905 days
Nicholas Cooke 1775-11-07 1778-05-04 909 days
William Medill 1853-07-13 1856-01-14 915 days
John Willis Ellis 1859-01-01 1861-07-07 918 days
James Turner Morehead 1834-02-21 1836-08-30 921 days
Hamilton Rowan Gamble 1861-07-23 1864-01-31 922 days
Harris Flanagin 1862-11-15 1865-05-28 925 days
David Shelby Walker 1865-12-20 1868-07-04 927 days
Jonathan Worth 1865-12-15 1868-07-01 929 days
Wilbert Lee O’Daniel 1939-01-17 1941-08-04 930 days
Andrew Lintner Harris 1906-06-18 1909-01-11 938 days
Robert Wright 1806-11-10 1809-06-09 942 days
Reuben Wood 1850-12-12 1853-07-13 944 days
Robert Miller Patton 1865-12-13 1868-07-14 944 days
James Edward Ferguson Jr.  1915-01-19 1917-08-25 949 days
Dan Edward Garvey 1948-05-25 1951-01-01 951 days
Richard Caswell 1785-05-13 1787-12-20 951 days
James Lawrence Orr 1865-11-26 1868-07-06 953 days
Thomas Sim Lee 1792-04-05 1794-11-14 953 days
Denver Sylvester Dickerson 1908-05-22 1911-01-02 955 days
Dewitt Clinton Senter 1869-02-25 1871-10-10 957 days
William Rabun 1817-03-04 1819-10-24 964 days
Sarah Louise Palin 2006-12-04 2009-07-26 965 days
Thomas Johnson 1777-03-21 1779-11-12 966 days
Benjamin Grubb Humphreys 1865-10-16 1868-06-15 973 days
John Hubbard 1850-05-08 1853-01-05 973 days
Albert Brewer 1968-05-07 1971-01-18 986 days
Powell Foulk Clayton 1868-07-02 1871-03-17 988 days
Francis Redding Tillou Nicholls 1877-04-25 1880-01-14 994 days
William Woods Holden 1868-07-01 1871-03-22 994 days
Zebulon Baird Vance 1862-09-08 1865-05-29 994 days
Arthur Seligman 1931-01-01 1933-09-25 998 days
Frank Henry Cooney 1933-03-13 1935-12-15 1007 days
William Sprague IV 1860-05-29 1863-03-03 1008 days
Enoch Lincoln 1827-01-03 1829-10-08 1009 days
Wade Hampton III 1876-12-14 1879-09-26 1016 days
Raul Hector Castro 1975-01-06 1977-10-20 1018 days
David Alexander Paterson 2008-03-17 2010-12-31 1019 days
Thomas Lowry Bailey 1944-01-18 1946-11-02 1019 days
Henry Lloyd 1885-03-27 1888-01-11 1020 days
Marcellus Lovejoy Stearns 1874-03-18 1877-01-02 1021 days
Burnet Rhett Maybank 1939-01-17 1941-11-04 1022 days
James Edward McGreevey 2002-01-15 2004-11-15 1035 days
Alvin Peterson Hovey 1889-01-14 1891-11-23 1043 days
John Drayton 1800-01-23 1802-12-08 1049 days
Richard Coke 1874-01-15 1876-12-01 1051 days
Patrick Henry 1776-07-06 1779-06-01 1060 days
Rose Perica Mafford 1988-04-04 1991-03-06 1066 days
Richard Dobbs Spaight 1792-12-14 1795-11-19 1070 days
James Barbour 1812-01-04 1814-12-11 1072 days
Isaac Lee Patterson 1927-01-10 1929-12-21 1076 days
Arthur Harry Moore 1932-01-19 1935-01-03 1080 days
John Sappington Marmaduke 1885-01-12 1887-12-28 1080 days
Richard Skinner 1820-10-23 1823-10-10 1082 days
John Page 1802-12-24 1805-12-11 1083 days
Beriah Magoffin 1859-08-30 1862-08-18 1084 days
Earle Chester Clements 1947-12-09 1950-11-27 1084 days
William Hawkins 1811-12-11 1814-11-29 1084 days
John Eager Howard 1788-11-24 1791-11-14 1085 days
Peter Dumont Vroom 1829-11-06 1832-10-26 1085 days
Joseph Marshall Walker 1850-01-28 1853-01-18 1086 days
Andrew Johnson 1862-03-12 1865-03-05 1089 days
Thomas Ward Veazey 1836-01-14 1839-01-07 1089 days
Benjamin Ogle 1798-11-14 1801-11-10 1091 days
Edward Irving Edwards 1920-01-20 1923-01-15 1091 days
Alexander Hamilton Rice 1876-01-06 1879-01-02 1092 days
Ambrose Everett Burnside 1866-05-29 1869-05-25 1092 days
Arthur Harry Moore 1926-01-19 1929-01-15 1092 days
Charles Collins Van Zandt 1877-05-29 1880-05-25 1092 days
Charles Creighton Stratton 1845-01-21 1848-01-18 1092 days
Charles Edison 1941-01-21 1944-01-18 1092 days
David Hall 1802-01-19 1805-01-15 1092 days
David Hazzard 1830-01-19 1833-01-15 1092 days
Franklin Murphy 1902-01-21 1905-01-17 1092 days
George Craig Ludlow 1881-01-18 1884-01-15 1092 days
George Franklin Fort 1851-01-21 1854-01-17 1092 days
George Truitt 1808-01-19 1811-01-15 1092 days
Henry Waggaman Edwards 1835-05-06 1838-05-02 1092 days
James Clark 1836-08-30 1839-08-27 1092 days
James Fairman Fielder 1914-01-20 1917-01-16 1092 days
James McDowell 1843-01-05 1846-01-01 1092 days
James Thomas 1833-01-17 1836-01-14 1092 days
Joel Parker 1863-01-20 1866-01-16 1092 days
John Clark 1817-01-21 1820-01-18 1092 days
John Davis Long 1880-01-08 1883-01-04 1092 days
John Franklin Fort 1908-01-21 1911-01-17 1092 days
Joseph Dorsett Bedle Sr.  1875-01-19 1878-01-15 1092 days
Joseph Hiester 1820-12-19 1823-12-16 1092 days
Leon Abbett 1890-01-21 1893-01-17 1092 days
Lot Myrick Morrill 1858-01-06 1861-01-02 1092 days
Nathaniel Prentice Banks 1858-01-07 1861-01-03 1092 days
Oden Bowie 1869-01-13 1872-01-10 1092 days
Samuel Bigger 1840-12-09 1843-12-06 1092 days
Samuel Cony 1864-01-06 1867-01-02 1092 days
Samuel Dinsmoor Jr.  1849-06-07 1852-06-03 1092 days
Samuel Emerson Smith 1831-01-05 1834-01-01 1092 days
Samuel Paynter 1824-01-20 1827-01-16 1092 days
Samuel Sprigg 1819-12-20 1822-12-16 1092 days
Samuel Walker McCall 1916-01-06 1919-01-02 1092 days
Theodore Fitz Randolph 1869-01-19 1872-01-16 1092 days
Thomas George Pratt 1845-01-06 1848-01-03 1092 days
William Augustus Newell 1857-01-20 1860-01-17 1092 days
William Claflin 1869-01-07 1872-01-04 1092 days
William Eustis Russell 1891-01-08 1894-01-04 1092 days
William Fisher Packer 1858-01-19 1861-01-15 1092 days
William Grason 1839-01-07 1842-01-03 1092 days
William Plumer 1816-06-06 1819-06-03 1092 days
Alexander Martin 1789-12-17 1792-12-14 1093 days
John Page 1839-06-05 1842-06-02 1093 days
Robert Bowie 1803-11-13 1806-11-10 1093 days
William Smallwood 1785-11-26 1788-11-24 1094 days
James Patton Preston 1816-12-11 1819-12-11 1095 days
John Buchanan Floyd 1849-01-01 1852-01-01 1095 days
Lucius Robinson 1876-12-31 1879-12-31 1095 days
Morgan Lewis 1804-06-30 1807-06-30 1095 days
Alonzo Barton Cornell 1879-12-31 1882-12-31 1096 days
Benjamin Harrison V 1781-11-30 1784-11-30 1096 days
David Campbell 1837-03-31 1840-03-31 1096 days
Gabriel Holmes 1821-12-07 1824-12-07 1096 days
George Clinton 1801-06-30 1804-06-30 1096 days
Hutchins Gordon Burton 1824-12-07 1827-12-08 1096 days
James Pleasants Jr.  1822-12-11 1825-12-11 1096 days
Roswell Pettibone Flower 1891-12-31 1894-12-31 1096 days
Thomas Mann Randolph Jr.  1819-12-11 1822-12-11 1096 days
William Branch Giles 1827-03-04 1830-03-04 1096 days
William Smith 1846-01-01 1849-01-01 1096 days
John Branch Jr.  1817-12-06 1820-12-07 1097 days
Oliver Ames 1887-01-06 1890-01-07 1097 days
William H. Cabell 1805-12-11 1808-12-12 1097 days
George Clement Perkins 1880-01-08 1883-01-10 1098 days
Isaac Hill 1836-06-02 1839-06-05 1098 days
Alexander Hamilton Bullock 1866-01-04 1869-01-07 1099 days
Alfred Henry Littlefield 1880-05-25 1883-05-29 1099 days
Arthur Harry Moore 1938-01-18 1941-01-21 1099 days
Charles Polk Jr.  1827-01-16 1830-01-19 1099 days
Charles Smith Olden 1860-01-17 1863-01-20 1099 days
Cornelius Peter Van Ness 1823-10-10 1826-10-13 1099 days
Curtis Guild Jr.  1906-01-04 1909-01-07 1099 days
Daniel Haines 1848-01-18 1851-01-21 1099 days
Daniel Rodney 1814-01-18 1817-01-21 1099 days
David Lawrence Morril 1824-06-03 1827-06-07 1099 days
David Lowry Swain 1832-12-06 1835-12-10 1099 days
David Wallace 1837-12-06 1840-12-09 1099 days
Edward Casper Stokes 1905-01-17 1908-01-21 1099 days
Elisha Dyer Jr.  1897-05-25 1900-05-29 1099 days
Eugene Noble Foss 1911-01-05 1914-01-08 1099 days
Foster McGowan Voorhees 1899-01-17 1902-01-21 1099 days
Francis Thomas 1842-01-03 1845-01-06 1099 days
George Brinton McClellan 1878-01-15 1881-01-18 1099 days
George Dexter Robinson 1884-01-03 1887-01-06 1099 days
George Theodore Werts 1893-01-17 1896-01-21 1099 days
Harold Giles Hoffman 1935-01-15 1938-01-18 1099 days
Henry Joseph Gardner 1855-01-04 1858-01-07 1099 days
James Youngs Smith 1863-05-26 1866-05-29 1099 days
Joel Parker 1872-01-16 1875-01-19 1099 days
John Hoskins Stone 1794-11-14 1797-11-17 1099 days
John Taylor Gilman 1813-06-03 1816-06-06 1099 days
Joseph Haslet 1811-01-15 1814-01-18 1099 days
Leon Abbett 1884-01-15 1887-01-18 1099 days
Marcus Lawrence Ward 1866-01-16 1869-01-19 1099 days
Morgan Foster Larson 1929-01-15 1932-01-19 1099 days
Nathaniel Mitchell 1805-01-15 1808-01-19 1099 days
Philip Francis Thomas 1848-01-03 1851-01-06 1099 days
Robert Stockton Green 1887-01-18 1890-01-21 1099 days
Rodman McCamley Price 1854-01-17 1857-01-20 1099 days
Samuel Dinsmoor 1831-06-02 1834-06-05 1099 days
Seldon Connor 1876-01-05 1879-01-08 1099 days
Sidney Perham 1871-01-04 1874-01-07 1099 days
Thomas Swann 1866-01-10 1869-01-13 1099 days
Walter Evans Edge 1944-01-18 1947-01-21 1099 days
William Channing Gibbs 1821-05-02 1824-05-05 1099 days
William Findlay 1817-12-16 1820-12-19 1099 days
Winthrop Murray Crane 1900-01-04 1903-01-08 1099 days
George Sebastian Silzer 1923-01-15 1926-01-19 1100 days
James Monroe 1799-12-19 1802-12-24 1100 days
James Turner 1802-12-06 1805-12-10 1100 days
William Paca 1782-11-22 1785-11-26 1100 days
Enoch Louis Lowe 1851-01-06 1854-01-11 1101 days
James Wood 1796-11-30 1799-12-06 1101 days
Charles Canan Ridgely 1816-01-02 1819-01-08 1102 days
Joseph Kent 1826-01-09 1829-01-15 1102 days
Daniel Russell Brown 1892-05-21 1895-05-29 1103 days
Ernest William Gibson Jr.  1947-01-09 1950-01-16 1103 days
Samuel Chandler Crafts 1828-10-10 1831-10-18 1103 days
William Miller 1814-11-29 1817-12-06 1103 days
Paul Octave Hebert 1853-01-18 1856-01-28 1105 days
Peter Dumont Vroom 1833-10-25 1836-11-03 1105 days
Thomas Sim Lee 1779-11-12 1782-11-22 1106 days
Benjamin Williams 1799-11-23 1802-12-06 1108 days
Alexandre Mouton 1843-01-30 1846-02-12 1109 days
Henry McBride 1901-12-26 1905-01-11 1112 days
Beverley Randolph 1788-11-12 1791-12-01 1114 days
Samuel Ashe 1795-11-19 1798-12-07 1114 days
Alexander Martin 1782-04-22 1785-05-13 1117 days
Ethan Allen Brown 1818-12-14 1822-01-04 1117 days
Wendell Hampton Ford 1971-12-07 1974-12-28 1117 days
John Rutledge 1779-01-09 1782-01-31 1118 days
Samuel Stevens Jr.  1822-12-16 1826-01-09 1120 days
William Warner Hoppin 1854-05-02 1857-05-26 1120 days
Aretas Brooks Fleming 1890-02-06 1893-03-04 1122 days
Aram Jules Pothier 1925-01-06 1928-02-04 1124 days
Joseph Ritner 1835-12-15 1839-01-15 1127 days
James Wilson Grimes 1854-12-09 1858-01-13 1131 days
Paul Linton Patterson 1952-12-27 1956-02-01 1131 days
Levin Winder 1812-11-23 1816-01-02 1135 days
DeWitt Clinton 1824-12-31 1828-02-11 1137 days
Richard Webster Leche 1936-05-12 1939-06-26 1140 days
Ragnvald Anderson Nestos 1921-11-23 1925-01-07 1141 days
Jared Irwin 1806-09-23 1809-11-10 1144 days
David Emanuel 1798-01-12 1801-03-03 1145 days
Martin Edwin Trapp 1923-11-19 1927-01-10 1148 days
Charles Nathaniel Haskell 1907-11-16 1911-01-09 1150 days
Joseph Kemp Toole 1889-11-08 1893-01-01 1150 days
John Winchester Dana 1847-03-12 1850-05-08 1153 days
Henry Lewis Whitfield 1924-01-18 1927-03-18 1155 days
Elisha Peyre Ferry 1889-11-11 1893-01-11 1157 days
William Henry Bissell 1857-01-12 1860-03-18 1161 days
Hugh Johnston Anderson 1844-01-03 1847-03-12 1164 days
Robert Marcellus Stewart 1857-10-22 1861-01-03 1169 days
Newton Booth 1871-12-08 1875-02-27 1177 days
Thomas Reynolds 1840-11-16 1844-02-09 1180 days
William Lee Knous 1947-01-13 1950-04-15 1188 days
Clyde Elmer Anderson 1951-09-27 1955-01-05 1196 days
John Calvin Brown 1871-10-10 1875-01-18 1196 days
William Francis Quinn 1959-08-21 1962-12-03 1200 days
Return Jonathan Meigs Jr.  1810-12-08 1814-03-24 1202 days
Warren Terry McCray 1921-01-10 1924-04-30 1206 days
Tod Robinson Caldwell 1871-03-22 1874-07-11 1207 days
Caleb Prew Bennett 1833-01-15 1836-05-09 1210 days
Rufus Brown Bullock 1868-07-04 1871-10-30 1213 days
Robert Whitney Waterman 1887-09-12 1891-01-08 1214 days
Robert Archer Cooper 1919-01-21 1922-05-20 1215 days
William Pettus Hobby 1917-08-25 1921-01-18 1242 days
James Rolph Jr.  1931-01-06 1934-06-02 1243 days
John White Stevenson 1867-09-08 1871-02-03 1244 days
George Washington Hays 1913-08-06 1917-01-10 1253 days
Richard Caswell 1776-11-12 1780-04-20 1255 days
Thomas Hart Seymour 1850-05-04 1853-10-13 1258 days
Augustus Owsley Stanley I 1915-12-07 1919-05-19 1259 days
Francis Rawn Shunk 1845-01-21 1848-07-09 1265 days
Archibald Yell 1840-11-04 1844-04-29 1272 days
John Milton 1861-10-07 1865-04-01 1272 days
William Freame Johnston 1848-07-26 1852-01-20 1273 days
James Stoddard Boynton 1883-05-10 1886-11-09 1279 days
Alexander Ramsey 1860-01-02 1863-07-10 1285 days
John Whiteaker 1859-03-03 1862-09-10 1287 days
John Selden Roane 1849-04-19 1852-11-15 1306 days
Nelson Webster Dewey 1848-06-07 1852-01-05 1307 days
James Guy Tucker Jr.  1992-12-12 1996-07-15 1311 days
Hugh Smith Thompson 1882-12-01 1886-07-10 1317 days
Miles Benjamin McSweeney 1899-06-02 1903-01-20 1327 days
Arthur Gustave Sorlie 1925-01-07 1928-08-28 1329 days
Samuel Adams 1793-10-08 1797-06-02 1333 days
Charles Roberts Ingersoll 1873-05-07 1877-01-03 1337 days
Huey Pierce Long Jr.  1928-05-21 1932-01-25 1344 days
Argeo Paul Cellucci 1997-07-29 2001-04-10 1351 days
Edward John Thye 1943-04-27 1947-01-08 1352 days
Oscar Kelley Allen Sr.  1932-05-16 1936-01-28 1352 days
Charles Clark Stevenson 1887-01-03 1890-09-21 1357 days
Ashbel Parsons Willard 1857-01-12 1860-10-04 1361 days
Charles Evans Hughes Sr.  1906-12-31 1910-10-06 1375 days
Karl Fritjof Rolvaag 1963-03-25 1967-01-02 1379 days
Marion E. Hay 1909-03-28 1913-01-15 1389 days
Enos Thompson Throop 1829-03-12 1832-12-31 1390 days
Oscar Rennebohm 1947-03-12 1951-01-01 1391 days
Samuel Johnson Crawford 1865-01-09 1868-11-04 1395 days
Arthur Calvin Mellette 1889-03-09 1893-01-03 1396 days
Albert Benjamin Chandler Sr.  1935-12-10 1939-10-09 1399 days
Charles Elson Roemer III 1988-03-14 1992-01-13 1400 days
Gideon Tomlinson 1827-05-02 1831-03-02 1400 days
Roger Wolcott 1896-03-05 1900-01-04 1400 days
John Jones McRae 1854-01-10 1857-11-16 1406 days
Ben Wilson Olcott 1919-03-03 1923-01-08 1407 days
Charles Pinckney 1789-01-26 1792-12-05 1409 days
Walter Daniel Leake 1822-01-07 1825-11-17 1410 days
Daniel Dunklin 1832-11-19 1836-09-30 1411 days
Forrest Carl Donnell 1941-02-26 1945-01-08 1412 days
James Douglas Williams 1877-01-08 1880-11-20 1412 days
Horace Boies 1890-02-27 1894-01-11 1414 days
Frank Carlson 1947-01-13 1950-11-28 1415 days
Gabriel Slaughter 1816-10-14 1820-08-29 1415 days
Herman Guy Kump 1933-03-04 1937-01-18 1416 days
John Milledge 1802-11-04 1806-09-23 1419 days
William Gannaway Brownlow 1865-04-05 1869-02-25 1422 days
Thomas Bolling Robertson 1820-12-18 1824-11-15 1428 days
David Marston Clough 1895-01-31 1899-01-02 1432 days
Peter Hansborough Bell 1849-12-21 1853-11-23 1433 days
David Settle Reid 1851-01-01 1854-12-06 1435 days
Edward Fitzsimmons Dunne 1913-02-03 1917-01-08 1435 days
Percival Proctor Baxter 1921-01-31 1925-01-07 1437 days
Paul Burney Johnson Sr.  1940-01-16 1943-12-26 1440 days
John Anthony Winston 1853-12-20 1857-12-01 1442 days
John M. Reynolds 1830-12-06 1834-11-17 1442 days
Edward Martin 1943-01-19 1947-01-02 1444 days
Harry Flood Byrd Sr.  1926-02-01 1930-01-15 1444 days
Richard James Oglesby 1885-01-30 1889-01-14 1445 days
Isaac Johnson 1846-02-12 1850-01-28 1446 days
John Lourie Beveridge 1873-01-23 1877-01-08 1446 days
James Douglas McKay 1949-01-10 1952-12-27 1447 days
Frederick George Payne 1949-01-05 1952-12-24 1449 days
John Brown Gordon 1890-11-08 1894-10-27 1449 days
William Forrest Winter 1980-01-22 1984-01-10 1449 days
David Hampton Pryor 1975-01-14 1979-01-03 1450 days
James Burrows Edwards 1975-01-21 1979-01-10 1450 days
Raymond Earl Baldwin 1943-01-06 1946-12-27 1451 days
Ben Walter Hooper 1911-01-26 1915-01-17 1452 days
Dale Leon Bumpers 1971-01-12 1975-01-03 1452 days
Edwin Carl Johnson 1933-01-10 1937-01-01 1452 days
George F. Shafer 1929-01-09 1932-12-31 1452 days
Henry Drury Hatfield 1913-03-14 1917-03-05 1452 days
Jeremiah Morrow 1822-12-28 1826-12-19 1452 days
Charles Scott 1808-09-01 1812-08-24 1453 days
Thomas Bahnson Stanley 1954-01-19 1958-01-11 1453 days
James Herbert Budd 1895-01-11 1899-01-04 1454 days
Caleb Strong 1812-06-05 1816-05-30 1455 days
Elias Carr 1893-01-18 1897-01-12 1455 days
Frank White 1901-01-10 1905-01-04 1455 days
Hugh J. Gallen 1979-01-04 1982-12-29 1455 days
James Howard Edmondson 1959-01-12 1963-01-06 1455 days
James Norris Gillett 1907-01-09 1911-01-03 1455 days
James Proctor Knott 1883-09-05 1887-08-30 1455 days
Lyman Underwood Humphrey 1889-01-14 1893-01-08 1455 days
Morgan Gardner Bulkeley 1889-01-10 1893-01-04 1455 days
Oliver Max Gardner 1929-01-11 1933-01-05 1455 days
Samuel Roy McKelvie 1919-01-09 1923-01-03 1455 days
Abner Linwood Holton Jr.  1970-01-17 1974-01-12 1456 days
Adam McMullen 1925-01-08 1929-01-03 1456 days
Albert Benjamin Chandler Sr.  1955-12-13 1959-12-08 1456 days
Albinus Roberts Nance 1879-01-09 1883-01-04 1456 days
Alexander Monroe Dockery 1901-01-14 1905-01-09 1456 days
Allen Ingvar Olson 1981-01-06 1985-01-01 1456 days
Alvan Tufts Fuller 1925-01-08 1929-01-03 1456 days
Andre Bienvenue Roman 1839-02-04 1843-01-30 1456 days
Arthur Bernard Langlie 1941-01-15 1945-01-10 1456 days
Asa Smith Bushnell I 1896-01-13 1900-01-08 1456 days
Barbara Kay Roberts 1991-01-14 1995-01-09 1456 days
Benjamin Meek Miller 1931-01-19 1935-01-14 1456 days
Beverly Eaves Perdue 2009-01-10 2013-01-05 1456 days
Bradley Jay Little 2019-01-07 2023-01-02 1456 days
Brian Porter Kemp 2019-01-14 2023-01-09 1456 days
Charles Armington Robins 1947-01-06 1951-01-01 1456 days
Charles Henry Martin 1935-01-14 1939-01-09 1456 days
Charles Nelson Herreid 1901-01-08 1905-01-03 1456 days
Charles Robert Miller 1913-01-21 1917-01-16 1456 days
Charles Slaughter Morehead 1855-09-04 1859-08-30 1456 days
Charles Spittal Robb 1982-01-16 1986-01-11 1456 days
Charles Wayland Bryan 1931-01-08 1935-01-03 1456 days
Christian Archibald Herter 1953-01-08 1957-01-03 1456 days
Clifford Peter Hansen 1963-01-07 1967-01-02 1456 days
Colgate Whitehead Darden Jr.  1942-01-20 1946-01-15 1456 days
Daniel Killian Moore 1965-01-08 1969-01-03 1456 days
David Brydie Mitchell 1809-11-10 1813-11-05 1456 days
David Lee Walters 1991-01-14 1995-01-09 1456 days
David Leo Lawrence 1959-01-20 1963-01-15 1456 days
David Lyle Boren 1975-01-13 1979-01-08 1456 days
David Rowland Francis 1889-01-14 1893-01-09 1456 days
David William Davis 1919-01-06 1923-01-01 1456 days
Deane Chandler Davis 1969-01-09 1973-01-04 1456 days
Doyle Elam Carlton Sr.  1929-01-08 1933-01-03 1456 days
Duncan Clinch Heyward 1903-01-20 1907-01-15 1456 days
Ebe Walter Tunnell 1897-01-19 1901-01-15 1456 days
Edgar Doud Whitcomb 1969-01-13 1973-01-08 1456 days
Edmond Favor Noel 1908-01-21 1912-01-16 1456 days
Edwin Warfield 1904-01-13 1908-01-08 1456 days
Edwin Washington Edwards 1992-01-13 1996-01-08 1456 days
Elliot Woolfolk Major 1913-01-13 1917-01-08 1456 days
Flemon Davis Sampson 1927-12-13 1931-12-08 1456 days
Forrest Howard Anderson 1969-01-06 1973-01-01 1456 days
Francing Redding Tillou Nicholls 1888-05-21 1892-05-16 1456 days
Francis Parnell Murphy 1937-01-07 1941-01-02 1456 days
Francis Philip Fleming 1889-01-08 1893-01-03 1456 days
Frank Brown 1892-01-13 1896-01-08 1456 days
Frank Morris Byrne 1913-01-07 1917-01-02 1456 days
Frank R. Licht 1969-01-07 1973-01-02 1456 days
Frederick Ferdinand Low 1863-12-10 1867-12-05 1456 days
Frederick Walker Pitkin 1879-01-14 1883-01-09 1456 days
Gavin Newsom 2019-01-07 2023-01-02 1456 days
George Docking 1957-01-14 1961-01-09 1456 days
George Theodore Mickelson 1947-01-07 1951-01-02 1456 days
George Walker Crawford 1843-11-08 1847-11-03 1456 days
George Washington Clarke 1913-01-16 1917-01-11 1456 days
Gilford Pinchot 1931-01-20 1935-01-15 1456 days
Harold Willis Handley 1957-01-14 1961-01-09 1456 days
Harry Guyer Leslie 1929-01-14 1933-01-09 1456 days
Henry Frederick Schricker 1941-01-13 1945-01-08 1456 days
Henry Justin Allen 1919-01-13 1923-01-08 1456 days
Henry Louis Bellmon 1963-01-14 1967-01-09 1456 days
Henry Martyn Hoyt Sr.  1879-01-21 1883-01-16 1456 days
Henry Porter Baldwin 1869-01-06 1873-01-01 1456 days
Henry Stewart Caulfield 1929-01-14 1933-01-09 1456 days
Herschel Cellel Loveless 1957-01-17 1961-01-12 1456 days
Homer Adams Holt 1937-01-18 1941-01-13 1456 days
Homer Martin Adkins 1941-01-14 1945-01-09 1456 days
Hugh Lawson White 1936-01-21 1940-01-16 1456 days
Hugh Lawson White 1952-01-22 1956-01-17 1456 days
Hulett Carlson Smith 1965-01-18 1969-01-13 1456 days
Ibra Charles Blackwood 1931-01-20 1935-01-15 1456 days
James Bennett McCreary 1911-12-12 1915-12-07 1456 days
James Brooks Ayres Robertson 1919-01-13 1923-01-08 1456 days
James Elisha Folsom Sr.  1947-01-20 1951-01-15 1456 days
James Fenner 1807-05-06 1811-05-01 1456 days
James Henderson Duff 1947-01-21 1951-01-16 1456 days
James Strom Thurmond Sr.  1947-01-21 1951-01-16 1456 days
James Stuart Gilmore III 1998-01-17 2002-01-12 1456 days
James Thomas Blair Jr.  1957-01-14 1961-01-09 1456 days
Jay Robert Pritzker 2019-01-14 2023-01-09 1456 days
Jim Stephen Hogg 1891-01-20 1895-01-15 1456 days
Joan Marie Finney 1991-01-14 1995-01-09 1456 days
John Adair 1820-08-29 1824-08-24 1456 days
John E. Davis 1957-01-09 1961-01-04 1456 days
John Gayle 1831-11-26 1835-11-21 1456 days
John Henry Gear 1878-01-17 1882-01-12 1456 days
John Henry Kinkead 1879-01-06 1883-01-01 1456 days
John Henry Morehead 1913-01-09 1917-01-04 1456 days
John Hopwood Mickey 1903-01-08 1907-01-03 1456 days
John Jones Pettus 1859-11-21 1863-11-16 1456 days
John Malcolm Patterson 1959-01-19 1963-01-14 1456 days
John Pierce St. John 1879-01-13 1883-01-08 1456 days
John Wood Hall 1879-01-21 1883-01-16 1456 days
Joseph Buell Ely 1931-01-08 1935-01-03 1456 days
Joseph Melville Broughton Jr.  1941-01-09 1945-01-04 1456 days
Laura J. Kelly 2019-01-14 2023-01-09 1456 days
Lewis Orin Barrows 1937-01-06 1941-01-01 1456 days
Llewelyn Sherman Adams 1949-01-06 1953-01-01 1456 days
Louie Broady Nunn 1967-12-12 1971-12-07 1456 days
Louis Benjamin Hanna 1913-01-08 1917-01-03 1456 days
Louis Lincoln Emmerson 1929-01-14 1933-01-09 1456 days
Lowell Palmer Weicker Jr.  1991-01-09 1995-01-04 1456 days
Luther Egbert Hall 1912-05-20 1916-05-15 1456 days
Martha Layne Collins 1983-12-13 1987-12-08 1456 days
Martin Luther Davey 1935-01-14 1939-01-09 1456 days
Michael Richard Pence 2013-01-14 2017-01-09 1456 days
Nathaniel Edwin Harris 1917-06-30 1921-06-25 1456 days
Ned Lamont 2019-01-09 2023-01-04 1456 days
Nehemiah Rice Knight 1817-05-07 1821-05-02 1456 days
Neil Abercrombie 2010-12-06 2014-12-01 1456 days
Oliver Henry Shoup 1919-01-14 1923-01-09 1456 days
Oran Milo Roberts 1879-01-21 1883-01-16 1456 days
Park Monroe Trammell 1913-01-07 1917-01-02 1456 days
Paul Burney Johnson Jr.  1964-01-21 1968-01-16 1456 days
Philip Fox La Follette 1935-01-07 1939-01-02 1456 days
Preston Earnest Smith 1969-01-21 1973-01-16 1456 days
Ralph Owen Brewster 1925-01-07 1929-01-02 1456 days
Richard Buell Ogilvie 1969-01-13 1973-01-08 1456 days
Richard James Oglesby 1865-01-16 1869-01-11 1456 days
Richard Kirman Sr.  1935-01-07 1939-01-02 1456 days
Richard Michael DeWine 2019-01-14 2023-01-09 1456 days
Richard Yates Jr.  1901-01-14 1905-01-09 1456 days
Robert Charles Wickliffe 1856-01-28 1860-01-23 1456 days
Robert Davis Carey 1919-01-06 1923-01-01 1456 days
Robert Emory Pattison 1891-01-20 1895-01-15 1456 days
Robert Floyd Kennon Sr.  1952-05-13 1956-05-08 1456 days
Robert Francis McDonnell 2010-01-16 2014-01-11 1456 days
Robert Frederick Bennett 1975-01-13 1979-01-08 1456 days
Robert John Reynolds 1891-01-20 1895-01-15 1456 days
Robert Pyle Robinson 1925-01-20 1929-01-15 1456 days
Robert Wililam Straub 1975-01-13 1979-01-08 1456 days
Ronald Dion DeSantis 2019-01-07 2023-01-02 1456 days
Roy Joseph Turner 1947-01-13 1951-01-08 1456 days
Russell Willbur Peterson 1969-01-21 1973-01-16 1456 days
Rutherford Birchard Hayes 1868-01-13 1872-01-08 1456 days
Salmon Portland Chase 1856-01-14 1860-01-09 1456 days
Samuel Houston Jones 1940-05-14 1944-05-09 1456 days
Samuel Merrill 1868-01-16 1872-01-11 1456 days
Samuel Moffett Ralston 1913-01-13 1917-01-08 1456 days
Samuel Whitaker Pennypacker 1903-01-20 1907-01-15 1456 days
Samuel Willis Tucker Lanham 1903-01-20 1907-01-15 1456 days
Seymour Lane Dwinell 1955-01-06 1959-01-01 1456 days
Spessard Lindsey Holland 1941-01-07 1945-01-02 1456 days
Thomas Andrew Osborn 1873-01-13 1877-01-08 1456 days
Thomas Andrews Hendricks 1873-01-13 1877-01-08 1456 days
Thomas Edward Campbell 1919-01-06 1923-01-01 1456 days
Thomas Holliday Hicks 1858-01-13 1862-01-08 1456 days
Thomas Kilby 1919-01-20 1923-01-15 1456 days
Thomas William Hardwick 1923-06-30 1927-06-25 1456 days
William Alford Richards 1895-01-07 1899-01-02 1456 days
William Allen Egan 1970-12-07 1974-12-02 1456 days
William Cameron Sproul 1919-01-21 1923-01-16 1456 days
William Casey Marland 1953-01-19 1957-01-14 1456 days
William E. Smith 1878-01-07 1882-01-02 1456 days
William Henry Harrison Ross 1851-01-21 1855-01-16 1456 days
William Henry Wills 1941-01-09 1945-01-04 1456 days
William Jennings Sheffield Jr.  1982-12-06 1986-12-01 1456 days
William Paine Lord 1895-01-14 1899-01-09 1456 days
William Perry Clements Jr.  1987-01-20 1991-01-15 1456 days
William Pitt Kellogg 1873-01-13 1877-01-08 1456 days
William Rush Merriam 1889-01-09 1893-01-04 1456 days
William Sherman Jennings 1901-01-08 1905-01-03 1456 days
William Thomas Cahill 1970-01-20 1974-01-15 1456 days
William Thomas Hamilton 1880-01-14 1884-01-09 1456 days
William Wright Heard 1900-05-21 1904-05-16 1456 days
William Yates Atkinson 1898-10-29 1902-10-25 1456 days
Wilson Lumpkin 1831-11-09 1835-11-04 1456 days
Winfield Taylor Durbin 1901-01-14 1905-01-09 1456 days
Alfred Moore Scales 1885-01-21 1889-01-17 1457 days
Anselm Joseph McLaurin 1896-01-20 1900-01-16 1457 days
Carl Edward Sanders Sr.  1963-01-15 1967-01-11 1457 days
Charles Brantley Aycock 1901-01-15 1905-01-11 1457 days
Christopher Greenup 1804-09-05 1808-09-01 1457 days
Earl Buford Ellingtron 1959-01-19 1963-01-15 1457 days
Ernest Whitworth Marland 1935-01-13 1939-01-09 1457 days
Friend William Richardson 1923-01-08 1927-01-04 1457 days
Joseph Wilson Fifer 1889-01-14 1893-01-10 1457 days
Locke Craig 1913-01-15 1917-01-11 1457 days
Patrick Lloyd McCrory 2013-01-05 2017-01-01 1457 days
Angus Wilton McLean 1925-01-14 1929-01-11 1458 days
Coleman Livingston Blease 1911-01-17 1915-01-14 1458 days
Edmund Sixtus Muskie 1955-01-05 1959-01-02 1458 days
George Bell Timmerman Jr.  1955-01-18 1959-01-15 1458 days
Herschel Vespasian Johnson 1853-11-09 1857-11-06 1458 days
James Philip Eagle 1889-01-17 1893-01-14 1458 days
Jamuel Rinnah Van Sant 1901-01-07 1905-01-04 1458 days
Charles Henry Sheldon 1893-01-03 1897-01-01 1459 days
Charles Miller Croswell 1877-01-03 1881-01-01 1459 days
George Mattthews 1789-11-09 1793-11-07 1459 days
George Stoneman Jr.  1883-01-10 1887-01-08 1459 days
Harry Hill McAlister 1933-01-17 1937-01-15 1459 days
Henry Bradstreet Cleaves 1893-01-04 1897-01-02 1459 days
Horace Austin 1870-01-09 1874-01-07 1459 days
Judd Alan Gregg 1989-01-04 1993-01-02 1459 days
Silas Garber 1875-01-11 1879-01-09 1459 days
Thomas Clarke Rye 1915-01-17 1919-01-15 1459 days
Albert Harold Quie 1979-01-04 1983-01-03 1460 days
Allen Trimble 1826-12-19 1830-12-18 1460 days
Daniel Webster Jones 1897-01-18 1901-01-18 1460 days
George Wesley Atkinson 1897-03-04 1901-03-04 1460 days
Gordon Weaver Browning 1949-01-16 1953-01-15 1460 days
Hazedn Stuart Pingree 1897-01-01 1901-01-01 1460 days
Henry Dickerson McDaniel 1886-11-09 1890-11-08 1460 days
James Chamberlain Jones 1841-10-15 1845-10-14 1460 days
James Hoge Tyler 1898-01-01 1902-01-01 1460 days
Joseph Forney Johnston 1896-12-01 1900-12-01 1460 days
Leonard Ray Blanton 1975-01-18 1979-01-17 1460 days
Llewellyn Powers 1897-01-02 1901-01-02 1460 days
Margaret Coldwell Hassan 2013-01-03 2017-01-02 1460 days
Aaron Thomas Bliss 1901-01-01 1905-01-01 1461 days
Albert Blakeslee White 1901-03-04 1905-03-04 1461 days
Albert Edson Sleeper 1917-01-01 1921-01-01 1461 days
Albert Gallatin Brown 1844-01-10 1848-01-10 1461 days
Anthony Steven Evers 2019-01-07 2023-01-07 1461 days
Benjamin Barker Odell Jr.  1900-12-31 1904-12-31 1461 days
Benjamin Ryan Tillman 1890-12-04 1894-12-04 1461 days
Bruce King 1971-01-01 1975-01-01 1461 days
Bruce King 1979-01-01 1983-01-01 1461 days
Bruce King 1991-01-01 1995-01-01 1461 days
Charles Seymour Whitman 1914-12-31 1918-12-31 1461 days
Charles Triplett O’Ferrall 1894-01-01 1898-01-01 1461 days
Claude Augustus Swanson 1906-02-01 1910-02-01 1461 days
Clyde Kendle Tingley 1935-01-01 1939-01-01 1461 days
Cyrus Gray Luce 1887-01-01 1891-01-01 1461 days
David Francis Cargo 1967-01-01 1971-01-01 1461 days
Earl Buford Ellingtron 1967-01-16 1971-01-16 1461 days
Edward Asbury O’Neal 1882-12-01 1886-12-01 1461 days
Edwin Denison Morgan 1858-12-31 1862-12-31 1461 days
Edwin Leard Mechem 1951-01-01 1955-01-01 1461 days
Elbert Lee Trinkle 1922-02-01 1926-02-01 1461 days
Elisha Marshall Pease 1853-12-21 1857-12-21 1461 days
Ernest Frederick Hollings 1959-01-15 1963-01-15 1461 days
Fitzhugh Lee 1886-01-01 1890-01-01 1461 days
Franklin Delano Roosevelt 1928-12-31 1932-12-31 1461 days
Fred Warren Green 1927-01-01 1931-01-01 1461 days
Frederick William Mackey Holliday 1878-01-01 1882-01-01 1461 days
Garrey Edwawrd Carruthers 1987-01-01 1991-01-01 1461 days
Glenn Allen Youngkin 2022-01-15 2026-01-15 1461 days
Gregory Richard Gianforte 2021-01-04 2025-01-04 1461 days
Gretchen Esther Whitmer 2019-01-01 2023-01-01 1461 days
Harry Francis Kelly 1943-01-01 1947-01-01 1461 days
Henry Alexander Wise 1856-01-01 1860-01-01 1461 days
Henry Carter Stuart 1914-02-01 1918-02-01 1461 days
Henry Mason Matthews 1877-03-04 1881-03-04 1461 days
Howard Mason Gore 1925-03-04 1929-03-04 1461 days
Jack Moren Campbell 1963-01-01 1967-01-01 1461 days
Jacob Beeson Jackson 1881-03-04 1885-03-04 1461 days
James Lawson Kemper 1874-01-01 1878-01-01 1461 days
Janet Trafton Mills 2019-01-02 2023-01-02 1461 days
Jim Nance McCord 1945-01-16 1949-01-16 1461 days
John Cummins Edwards 1844-11-20 1848-11-20 1461 days
John Easten Miles 1939-01-01 1943-01-01 1461 days
John Joseph Dempsey 1943-01-01 1947-01-01 1461 days
John Kevin Stitt 2019-01-14 2023-01-14 1461 days
John Motley Morehead 1841-01-01 1845-01-01 1461 days
John Murphy 1825-11-25 1829-11-25 1461 days
John Thompson Hoffman 1868-12-31 1872-12-31 1461 days
John Treadway Rich 1893-01-01 1897-01-01 1461 days
Jonathan Tate Reeves 2020-01-14 2024-01-14 1461 days
Joseph Ellis Johnson 1852-01-01 1856-01-01 1461 days
Josiah Bartlett 1790-06-05 1794-06-05 1461 days
Kay Avonne Orr 1987-01-09 1991-01-09 1461 days
Kristi Lynn Noem 2019-01-05 2023-01-05 1461 days
Lee Maurice Russell 1920-01-18 1924-01-18 1461 days
Lee Sherman Dreyfus 1979-01-03 1983-01-03 1461 days
Mark Gordon 2019-01-07 2023-01-07 1461 days
MIchelle Lynn Lujan Grisham 2019-01-01 2023-01-01 1461 days
Ninian Edwards 1826-12-06 1830-12-06 1461 days
Philip Watkins McKinney 1890-01-01 1894-01-01 1461 days
Raymond S. Apodaca 1975-01-01 1979-01-01 1461 days
Reuben Eaton Fenton 1864-12-31 1868-12-31 1461 days
Richard Charles Dillon 1927-01-01 1931-01-01 1461 days
Samuel Ward King 1839-05-02 1843-05-02 1461 days
Stephen F. Sisolak 2019-01-07 2023-01-07 1461 days
Theodore Gilmore Bilbo 1916-01-18 1920-01-18 1461 days
Thomas Bragg 1855-01-01 1859-01-01 1461 days
Thomas Goode Jones 1890-12-01 1894-12-01 1461 days
Thomas Jewett Mabry 1947-01-01 1951-01-01 1461 days
Thomas Seay 1886-12-01 1890-12-01 1461 days
Timothy James Walz 2019-01-07 2023-01-07 1461 days
Toney Anaya 1983-01-01 1987-01-01 1461 days
Westmoreland Davis 1918-02-01 1922-02-01 1461 days
William Alexander Graham 1845-01-01 1849-01-01 1461 days
William Alexander MacCorkle 1893-03-04 1897-03-04 1461 days
William Averell Harriman 1954-12-31 1958-12-31 1461 days
William Byron Lee 2019-01-19 2023-01-19 1461 days
William Evelyn Cameron 1882-01-01 1886-01-01 1461 days
William Gustavus Conley 1929-03-04 1933-03-04 1461 days
William Henry Seward 1838-12-31 1842-12-31 1461 days
William Hodges Mann 1910-02-01 1914-02-01 1461 days
William Mercer Owens Dawson 1905-03-04 1909-03-04 1461 days
Woodbridge Nathan Ferris 1913-01-01 1917-01-01 1461 days
Andrew Barry Moore 1857-12-01 1861-12-02 1462 days
Ansel Briggs 1846-12-03 1850-12-04 1462 days
Arthur Pendleton Bagby 1837-11-21 1841-11-22 1462 days
Austin Blair 1861-01-02 1865-01-03 1462 days
Charles Hillman Brough 1917-01-10 1921-01-11 1462 days
Edward Aylesworth Perry 1885-01-07 1889-01-08 1462 days
Edward Bishop Dudley 1836-12-31 1841-01-01 1462 days
Edward Coles 1822-12-05 1826-12-06 1462 days
Edward Tiffin 1803-03-03 1807-03-04 1462 days
Frank Goad Clement 1963-01-15 1967-01-16 1462 days
Jacob Aall Ottesen Preus 1921-01-05 1925-01-06 1462 days
Jacques Philippe Villere 1816-12-17 1820-12-18 1462 days
James Bernard Longley Sr.  1975-01-02 1979-01-03 1462 days
John Bigler 1852-01-08 1856-01-09 1462 days
John Charles Vivian 1943-01-12 1947-01-13 1462 days
John Garland Pollard 1930-01-15 1934-01-16 1462 days
John Peter Altgeld 1893-01-10 1897-01-11 1462 days
Lester Garfield Maddox Sr.  1967-01-11 1971-01-12 1462 days
Oswald West 1911-01-11 1915-01-12 1462 days
Robert Broadnax Glenn 1905-01-11 1909-01-12 1462 days
Simeon Eben Baldwin 1911-01-05 1915-01-06 1462 days
Thomas Carlin 1838-12-07 1842-12-08 1462 days
Thomas Ford 1842-12-08 1846-12-09 1462 days
Thomas Walter Bickett 1917-01-11 1921-01-12 1462 days
William John Bulow 1927-01-05 1931-01-06 1462 days
William Rainey Marshall 1866-01-08 1870-01-09 1462 days
Addison Crandall Gibbs 1862-09-10 1866-09-12 1463 days
Adlai Ewing Stevenson II 1949-01-10 1953-01-12 1463 days
Albert Gallatin Porter 1881-01-10 1885-01-12 1463 days
Albert Waller Gilchrist 1909-01-05 1913-01-07 1463 days
Albertis Sydney Harrison Jr.  1962-01-13 1966-01-15 1463 days
Alexander Gallatin McNutt 1838-01-08 1842-01-10 1463 days
Alexander Williams Randall 1858-01-04 1862-01-06 1463 days
Alf Mossman Landon 1933-01-09 1937-01-11 1463 days
Andre Bienvenue Roman 1831-01-31 1835-02-02 1463 days
Andrew Frank Schoeppel 1943-01-11 1947-01-13 1463 days
Andrew Graham Beshear 2019-12-10 2023-12-12 1463 days
Andrew Houston Longino 1900-01-16 1904-01-19 1463 days
Anthony Scully Earl 1983-01-03 1987-01-05 1463 days
Arch Alfred Moore Jr.  1985-01-14 1989-01-16 1463 days
Archibald Maxwell Gubbrud 1961-01-03 1965-01-05 1463 days
Arthur Capper 1915-01-11 1919-01-13 1463 days
Arthur Horace James 1939-01-17 1943-01-19 1463 days
Arthur Mastick Hyde 1921-01-10 1925-01-12 1463 days
August William Ritter Jr.  2007-01-09 2011-01-11 1463 days
Augustus Everett Willson 1907-12-10 1911-12-12 1463 days
Augustus Williamson Bradford 1862-01-08 1866-01-10 1463 days
Austin Lane Crothers 1908-01-08 1912-01-10 1463 days
Benjamin Baker Moeur 1933-01-02 1937-01-04 1463 days
Benjamin Sanford Paulen 1925-01-12 1929-01-14 1463 days
Benjamin Thomas Biggs 1887-01-18 1891-01-20 1463 days
Benjamin Travis Laney Jr.  1945-01-09 1949-01-11 1463 days
Benton McMillin 1899-01-16 1903-01-19 1463 days
Bertram Thomas Combs 1959-12-08 1963-12-10 1463 days
Beryl Franklin Carroll 1909-01-14 1913-01-16 1463 days
Braxton Bragg Comer 1907-01-14 1911-01-16 1463 days
Brereton Chandler Jones 1991-12-10 1995-12-12 1463 days
Bruce George Sundlun 1991-01-01 1995-01-03 1463 days
Bruce Vincent Rauner 2015-01-12 2019-01-14 1463 days
Bryant Winfield Culberson Dunn 1971-01-16 1975-01-18 1463 days
Buren Robinson Sherman 1882-01-12 1886-01-14 1463 days
Cameron A. Morrison 1921-01-12 1925-01-14 1463 days
Carl Edward Bailey 1937-01-12 1941-01-14 1463 days
Carl Elias Milliken 1917-01-03 1921-01-05 1463 days
Cary Augustus Hardee 1921-01-04 1925-01-06 1463 days
Cecil Farris Bryant 1961-01-03 1965-01-05 1463 days
Cecil Harland Underwood 1957-01-14 1961-01-16 1463 days
Cecil Harland Underwood 1997-01-13 2001-01-15 1463 days
Channing Haris Cox 1921-01-06 1925-01-08 1463 days
Charles Allen Culberson 1895-01-15 1899-01-17 1463 days
Charles Arthur Sprague 1939-01-09 1943-01-11 1463 days
Charles Calvin Moore 1923-01-01 1927-01-03 1463 days
Charles Clark Stockley 1883-01-16 1887-01-18 1463 days
Charles Clifton Finch 1976-01-20 1980-01-22 1463 days
Charles Henderson 1915-01-18 1919-01-20 1463 days
Charles James McDonald 1839-11-06 1843-11-08 1463 days
Charles Milby Dale 1945-01-04 1949-01-06 1463 days
Charles Rendell Mabey 1921-01-03 1925-01-05 1463 days
Charles Thone 1979-01-04 1983-01-06 1463 days
Charles William Foster Jr.  1880-01-12 1884-01-14 1463 days
Charlie Joseph Crist Jr.  2007-01-02 2011-01-04 1463 days
Chester John Culver 2007-01-12 2011-01-14 1463 days
Christopher Samuel Bond 1973-01-08 1977-01-10 1463 days
Christopher Samuel Bond 1981-01-12 1985-01-14 1463 days
Clarence Watson Meadows 1945-01-15 1949-01-17 1463 days
Claude Matthews 1893-01-09 1897-01-11 1463 days
Claude Roy Kirk Jr.  1967-01-03 1971-01-05 1463 days
Clement Calhoun Young 1927-01-04 1931-01-06 1463 days
Clifford Mitchell Walker 1927-06-25 1931-06-27 1463 days
Clyde LaVerne Herring 1933-01-12 1937-01-14 1463 days
Clyde Roark Hoey 1937-01-07 1941-01-09 1463 days
Cornelius Parsons Comegys 1837-01-17 1841-01-19 1463 days
Culbert Levy Olson 1939-01-02 1943-01-04 1463 days
Cyrus Clay Carpenter 1872-01-11 1876-01-13 1463 days
Daniel Hartman Hastings 1895-01-15 1899-01-17 1463 days
Daniel Isaac J. Thornton 1951-01-09 1955-01-11 1463 days
Daniel J. Walker 1973-01-08 1977-01-10 1463 days
Daniel James Moody Jr.  1927-01-18 1931-01-20 1463 days
Daniel Lindsay Russell Jr.  1897-01-12 1901-01-15 1463 days
David Bibb Graves 1927-01-17 1931-01-19 1463 days
David Bibb Graves 1935-01-14 1939-01-16 1463 days
David Conner Treen Sr.  1980-03-10 1984-03-12 1463 days
David Hall 1971-01-11 1975-01-13 1463 days
David Muldrow Beasley 1995-01-11 1999-01-13 1463 days
David Ronald Musgrove 2000-01-11 2004-01-13 1463 days
David Sholtz 1933-01-03 1937-01-05 1463 days
Dewey Follett Bartlett Sr.  1967-01-09 1971-01-11 1463 days
Dixy Lee Ray 1977-01-12 1981-01-14 1463 days
Donald Eugene Siegelman 1999-01-18 2003-01-20 1463 days
Donald William Samuelson 1967-01-02 1971-01-04 1463 days
Dorothy Ann Richards 1991-01-15 1995-01-17 1463 days
Earl Kemp Long 1948-05-11 1952-05-13 1463 days
Earl Kemp Long 1956-05-08 1960-05-10 1463 days
Earl Leroy Brewer 1912-01-16 1916-01-18 1463 days
Edward Douglass White Sr.  1835-02-02 1839-02-04 1463 days
Edward Ferdinand Arn 1951-01-08 1955-01-10 1463 days
Edward Joseph King 1979-01-04 1983-01-06 1463 days
Edward L. Jackson 1925-01-12 1929-01-14 1463 days
Edward Scofield 1897-01-04 1901-01-07 1463 days
Edward Thompson Breathitt Jr.  1963-12-10 1967-12-12 1463 days
Edward Wallis Hoch 1905-01-09 1909-01-11 1463 days
Edwin Chick Burleigh 1889-01-02 1893-01-04 1463 days
Edwin Porch Morrow 1919-12-09 1923-12-11 1463 days
Edwin Sydney Stuart 1907-01-15 1911-01-17 1463 days
Edwin Washington Edwards 1984-03-12 1988-03-14 1463 days
Elbert Nostrand Carvel 1949-01-18 1953-01-20 1463 days
Elbert Nostrand Carvel 1961-01-17 1965-01-19 1463 days
Elihu Emory Jackson 1888-01-11 1892-01-13 1463 days
Emerson Columbus Harrington 1916-01-12 1920-01-14 1463 days
Emmet O’Neal 1911-01-16 1915-01-18 1463 days
Ernest Lee Fletcher 2003-12-09 2007-12-11 1463 days
Ernest McFarland 1955-01-03 1959-01-05 1463 days
Ernest Vandiver Jr.  1959-01-13 1963-01-15 1463 days
Eugene Talmadge 1937-01-12 1941-01-14 1463 days
Eugene Talmadge 1943-01-12 1947-01-14 1463 days
Forrest Hood James Jr.  1979-01-15 1983-01-17 1463 days
Forrest Hood James Jr.  1995-01-16 1999-01-18 1463 days
Forrest Smith 1949-01-10 1953-01-12 1463 days
Francis Edward McGovern 1911-01-02 1915-01-04 1463 days
Frank Hughes Murkowski 2002-12-02 2006-12-04 1463 days
Frank Murray Dixon 1939-01-16 1943-01-18 1463 days
Frank Orren Lowden 1917-01-08 1921-01-10 1463 days
Frank Robert Gooding 1905-01-02 1909-01-04 1463 days
Frank Steunenberg 1897-01-04 1901-01-07 1463 days
Frederick Dozier Gardner 1917-01-08 1921-01-10 1463 days
Frederick Preston Cone 1937-01-05 1941-01-07 1463 days
Frederick Robie 1883-01-03 1887-01-05 1463 days
Fuller Warren 1949-01-04 1953-01-06 1463 days
Gaylord Anton Nelson 1959-01-05 1963-01-07 1463 days
George Allison Wilson 1939-01-12 1943-01-14 1463 days
George Chauncey Sparks 1943-01-18 1947-01-20 1463 days
George Cooper Pardee 1903-01-07 1907-01-09 1463 days
George Corley Wallace Jr.  1963-01-14 1967-01-16 1463 days
George Corley Wallace Jr.  1983-01-17 1987-01-19 1463 days
George David Aiken 1937-01-07 1941-01-09 1463 days
George Felix Allen 1994-01-15 1998-01-17 1463 days
George Franklin Drew 1877-01-02 1881-01-04 1463 days
George Homer Ryan 1999-01-11 2003-01-13 1463 days
George Howard Earle III 1935-01-15 1939-01-17 1463 days
George Kilbon Nash 1900-01-08 1904-01-11 1463 days
George Lemuel Woods 1866-09-12 1870-09-14 1463 days
George Michael Leader 1955-01-18 1959-01-20 1463 days
George North Craig 1953-01-12 1957-01-14 1463 days
George Washington Bonaparte Towns 1847-11-03 1851-11-05 1463 days
George Washington Donaghey 1909-01-14 1913-01-16 1463 days
George White 1931-01-12 1935-01-14 1463 days
George Wilbur Peck 1891-01-05 1895-01-07 1463 days
Gerald Lee Baliles 1986-01-11 1990-01-13 1463 days
Gilford Pinchot 1923-01-16 1927-01-18 1463 days
Guy Brasfield Park 1933-01-09 1937-01-11 1463 days
Harlan John Bushfield 1939-01-03 1943-01-05 1463 days
Harry Whinna Nice 1935-01-09 1939-01-11 1463 days
Henry Clarence Baldridge 1927-01-03 1931-01-05 1463 days
Henry Frederick Schricker 1949-01-10 1953-01-12 1463 days
Henry Laurens Mitchell 1893-01-03 1897-01-05 1463 days
Henry Louis Bellmon 1987-01-12 1991-01-14 1463 days
Henry S. Johnson 1824-12-13 1828-12-15 1463 days
Henry Tifft Gage 1899-01-04 1903-01-07 1463 days
Herbert Spencer Hadley 1909-01-11 1913-01-13 1463 days
Horace Augustus Hildreth 1945-01-03 1949-01-05 1463 days
Isaac Pusey Gray 1885-01-12 1889-01-14 1463 days
James Addams Beaver 1887-01-18 1891-01-20 1463 days
James Arthur Gibbons 2007-01-01 2011-01-03 1463 days
James Atwell Mount 1897-01-11 1901-01-14 1463 days
James Bennett McCreary 1875-08-31 1879-09-02 1463 days
James Burr V Allred 1935-01-15 1939-01-17 1463 days
James Earl Carter Jr.  1971-01-12 1975-01-14 1463 days
James Elisha Folsom Sr.  1955-01-17 1959-01-19 1463 days
James Emilius Broome 1853-10-03 1857-10-05 1463 days
James Francis Byrnes 1951-01-16 1955-01-18 1463 days
James Franklin Hanly 1905-01-09 1909-01-11 1463 days
James Graves Scrugham 1923-01-01 1927-01-03 1463 days
James Houston Davis 1944-05-09 1948-05-11 1463 days
James Houston Davis 1960-05-10 1964-05-12 1463 days
James Hovis Hodges 1999-01-13 2003-01-15 1463 days
James Joseph Florio 1990-01-16 1994-01-18 1463 days
James Kimble Vardaman 1904-01-19 1908-01-21 1463 days
James Lindsay Almond Jr.  1958-01-11 1962-01-13 1463 days
James Madison Harvey 1869-01-11 1873-01-13 1463 days
James Middleton Cox 1917-01-08 1921-01-10 1463 days
James Plemon Coleman 1956-01-17 1960-01-19 1463 days
James Ponder 1871-01-17 1875-01-19 1463 days
James Putnam Goodrich 1917-01-08 1921-01-10 1463 days
James William Dawes 1883-01-04 1887-01-06 1463 days
Jared Schutz Polis 2019-01-08 2023-01-10 1463 days
Jared Youn Sanders Sr.  1908-05-18 1912-05-20 1463 days
Jesse Ventura 1999-01-04 2003-01-06 1463 days
Jewett William Adams 1883-01-01 1887-01-03 1463 days
Joel Aldrich Matteson 1853-01-10 1857-01-12 1463 days
John Alexander Martin 1885-01-12 1889-01-14 1463 days
John Anderson Jr.  1961-01-09 1965-01-11 1463 days
John Bell Wiliams 1968-01-16 1972-01-18 1463 days
John Carl West Sr.  1971-01-19 1975-01-21 1463 days
John Christopher Blucher Ehringhaus 1933-01-05 1937-01-07 1463 days
John Christopher Cutler 1905-01-02 1909-01-04 1463 days
John Clark 1819-11-05 1823-11-07 1463 days
John Collins 1786-05-03 1790-05-05 1463 days
John Davis Lodge 1951-01-03 1955-01-05 1463 days
John Dennis Spellman 1981-01-14 1985-01-16 1463 days
John Eliakim Weeks 1927-01-06 1931-01-08 1463 days
John Ezra Rickards 1893-01-01 1897-01-03 1463 days
John Foster Furcolo 1957-01-03 1961-01-05 1463 days
John Franklin Shafroth 1909-01-12 1913-01-14 1463 days
John Fremont Hill 1901-01-02 1905-01-04 1463 days
John Gardiner Richards Jr.  1927-01-18 1931-01-20 1463 days
John Gilbert Winant 1931-01-01 1935-01-03 1463 days
John Gillis Townsend Jr.  1917-01-16 1921-01-18 1463 days
John Harte McGraw 1893-01-11 1897-01-13 1463 days
John Howard Pyle 1951-01-01 1955-01-03 1463 days
John Hunn 1901-01-15 1905-01-17 1463 days
John Ireland 1883-01-16 1887-01-18 1463 days
John Joyce Gilligan 1971-01-11 1975-01-13 1463 days
John Judson Bagley 1873-01-01 1877-01-03 1463 days
John Kinley Tener 1911-01-17 1915-01-19 1463 days
John Langdon 1805-06-06 1809-06-08 1463 days
John Lee Carroll 1876-01-12 1880-01-14 1463 days
John McAuley Palmer 1869-01-11 1873-01-13 1463 days
John Michael Hayden 1987-01-12 1991-01-14 1463 days
John Milliken Parker Sr.  1920-05-17 1924-05-19 1463 days
John Montgomery Dalton 1961-01-09 1965-01-11 1463 days
John Nichols Dalton 1978-01-14 1982-01-16 1463 days
John Price Cochran 1875-01-19 1879-01-21 1463 days
John Riley Tanner 1897-01-11 1901-01-14 1463 days
John Smith Phelps 1877-01-08 1881-01-10 1463 days
John Stewart Barry 1842-01-03 1846-01-05 1463 days
John Stewart Battle 1950-01-17 1954-01-19 1463 days
John Stuchell Fisher 1927-01-18 1931-01-20 1463 days
John Sydney Fine 1951-01-16 1955-01-18 1463 days
John Walter Smith 1900-01-10 1904-01-13 1463 days
John Wellborn Martin 1925-01-06 1929-01-08 1463 days
John Woodrow Bonner 1949-01-03 1953-01-05 1463 days
John Young Brown Jr.  1979-12-11 1983-12-13 1463 days
Johnston Murray 1951-01-08 1955-01-10 1463 days
Jon Stevens Corzine 2006-01-17 2010-01-19 1463 days
Joseph Benson Foraker 1886-01-11 1890-01-13 1463 days
Joseph Blaine Johnson 1955-01-06 1959-01-08 1463 days
Joseph Desha 1824-08-24 1828-08-26 1463 days
Joseph Draper Sayers 1899-01-17 1903-01-20 1463 days
Joseph Jacob Foss 1955-01-04 1959-01-06 1463 days
Joseph Maull Carey 1911-01-02 1915-01-04 1463 days
Joseph Moore Dixon 1921-01-02 1925-01-04 1463 days
Joseph Patrick Teasdale 1977-01-10 1981-01-12 1463 days
Joseph Wingate Folk 1905-01-09 1909-01-11 1463 days
Joshua Lawrence Chamberlain 1867-01-02 1871-01-04 1463 days
Judith Helen Martz 2001-01-01 2005-01-03 1463 days
Judson Harmon 1909-01-11 1913-01-13 1463 days
Julius L. Meier 1931-01-12 1935-01-14 1463 days
Julius Peter Heil 1939-01-02 1943-01-04 1463 days
Junius Marion Futrell 1933-01-10 1937-01-12 1463 days
Karl Harold Phillip Levander 1967-01-02 1971-01-04 1463 days
Kathleen Babineaux Blanco 2004-01-12 2008-01-14 1463 days
Kinsley Scott Bingham 1855-01-03 1859-01-05 1463 days
Lawrence Douglas Wilder 1990-01-13 1994-01-15 1463 days
Lawrence Sullivan Ross 1887-01-18 1891-01-20 1463 days
Lawrence Vest Stephens 1897-01-11 1901-01-14 1463 days
Lazarus Whitehead Powell 1851-09-02 1855-09-04 1463 days
Lee Cruce 1911-01-09 1915-01-11 1463 days
Lee Earl Emerson 1951-01-04 1955-01-06 1463 days
Leon Chase Phillips 1939-01-09 1943-01-11 1463 days
Leonard Beck Jordan 1951-01-01 1955-01-03 1463 days
Leslie Mortier Shaw 1898-01-13 1902-01-16 1463 days
Lincoln Davenport Chafee 2011-01-04 2015-01-06 1463 days
Lloyd Lowndes Jr.  1896-01-08 1900-01-10 1463 days
Louis Jefferson Brann 1933-01-04 1937-01-06 1463 days
Madison Starke Perry 1857-10-05 1861-10-07 1463 days
Mark Robert Warner 2002-01-12 2006-01-14 1463 days
Mark Wells White Jr.  1983-01-18 1987-01-20 1463 days
Martin Frederick Ansel 1907-01-15 1911-01-17 1463 days
Martin Grove Brumbaugh 1915-01-19 1919-01-21 1463 days
Martin Sennet Conner 1932-01-19 1936-01-21 1463 days
Matthew Empson Welsh 1961-01-09 1965-01-11 1463 days
Matthew Griswold Bevin 2015-12-08 2019-12-10 1463 days
Matthew Mansfield Neely 1941-01-13 1945-01-15 1463 days
Matthew Roy Blunt 2005-01-10 2009-01-12 1463 days
Maurice Clifford Townsend 1937-01-11 1941-01-13 1463 days
Merrell Quentin Sharpe 1943-01-05 1947-01-07 1463 days
Michael Edward Lowry 1993-01-13 1997-01-15 1463 days
Michael James Dunleavy 2018-12-03 2022-12-05 1463 days
Michael Stanley Dukakis 1975-01-02 1979-01-04 1463 days
Michael Vincent DiSalle 1959-01-12 1963-01-14 1463 days
Millard Fillmore Caldwell 1945-01-02 1949-01-04 1463 days
Mills Edwin Godwin Jr.  1966-01-15 1970-01-17 1463 days
Mills Edwin Godwin Jr.  1974-01-12 1978-01-14 1463 days
Milward Lee Simpson 1955-01-03 1959-01-05 1463 days
Monrad Charles Wallgren 1945-01-10 1949-01-12 1463 days
Moses Alexander 1915-01-04 1919-01-06 1463 days
Napoleon Bonaparte Broward 1905-01-03 1909-01-05 1463 days
Nathan Edward Kendall 1921-01-13 1925-01-15 1463 days
Nels Hansen Smith 1939-01-02 1943-01-04 1463 days
Newton Cannon 1835-10-12 1839-10-14 1463 days
Newton Crain Blanchard 1904-05-16 1908-05-18 1463 days
Niel Edward Goldschmidt 1987-01-12 1991-01-14 1463 days
Nils Andreas Boe 1965-01-05 1969-01-07 1463 days
Norbert Theodore Tiemann 1967-01-05 1971-01-07 1463 days
Okey Leonidas Patteson 1949-01-17 1953-01-19 1463 days
Olin DeWitt Talmadge Johnston 1935-01-15 1939-01-17 1463 days
Oscar Branch Colquitt 1911-01-17 1915-01-19 1463 days
Pat Morris Neff 1921-01-18 1925-01-20 1463 days
Paul Andrew Dever 1949-01-06 1953-01-08 1463 days
Paul Dominique Laxalt 1967-01-02 1971-01-04 1463 days
Paul Vories McNutt 1933-01-09 1937-01-11 1463 days
Payne Harry Ratner 1939-01-09 1943-01-11 1463 days
Peter Foster Causey 1855-01-16 1859-01-18 1463 days
Peter Norbeck 1917-01-02 1921-01-04 1463 days
Philip Eugene Batt 1995-01-02 1999-01-04 1463 days
Philip Lee Goldsborough I 1912-01-10 1916-01-12 1463 days
Philip Matthew Donnelly 1945-01-08 1949-01-10 1463 days
Philip Matthew Donnelly 1953-01-12 1957-01-14 1463 days
Philip William Noel 1973-01-02 1977-01-04 1463 days
Preston Lea 1905-01-17 1909-01-19 1463 days
Ralph Fesler Gates 1945-01-08 1949-01-10 1463 days
Ralph Lawrence Carr 1939-01-10 1943-01-12 1463 days
Ralph Shearer Northam 2018-01-13 2022-01-15 1463 days
Raymond Dancel Gary 1955-01-10 1959-01-12 1463 days
Raymond Edwin Mabus Jr.  1988-01-12 1992-01-14 1463 days
Raymond Philip Shafer 1967-01-17 1971-01-19 1463 days
Richard Brevard Russell Jr.  1933-01-10 1937-01-12 1463 days
Richard Cann McMullen 1937-01-19 1941-01-21 1463 days
Richard Irvine Manning III 1915-01-19 1919-01-21 1463 days
Richard Yates 1861-01-14 1865-01-16 1463 days
Robert Donald Blue 1945-01-11 1949-01-13 1463 days
Robert Ellsworth Wise Jr.  2001-01-15 2005-01-17 1463 days
Robert Emory Pattison 1883-01-16 1887-01-18 1463 days
Robert Frank List 1979-01-01 1983-01-03 1463 days
Robert Gregg Cherry 1945-01-04 1949-01-06 1463 days
Robert Lee Holden Jr.  2001-01-08 2005-01-10 1463 days
Robert Lee Williams 1915-01-11 1919-01-13 1463 days
Robert Leroy Ehrlich Jr.  2003-01-15 2007-01-17 1463 days
Robert Love Taylor 1887-01-17 1891-01-19 1463 days
Robert Martinez 1987-01-06 1991-01-08 1463 days
Robert Oscar Blood 1941-01-02 1945-01-04 1463 days
Robert Perkins Letcher 1840-09-02 1844-09-04 1463 days
Robert Pinckney Dunlap 1834-01-01 1838-01-03 1463 days
Robert Samuel Kerr 1943-01-11 1947-01-13 1463 days
Robert Scadden Vessey 1909-01-05 1913-01-07 1463 days
Robert Walter Scott 1969-01-03 1973-01-05 1463 days
Roger Douglas Branigin 1965-01-11 1969-01-13 1463 days
Ross Robert Barnett 1960-01-19 1964-01-21 1463 days
Roswell Keyes Colcord 1891-01-05 1895-01-07 1463 days
Roy Elmer Ayers 1937-01-04 1941-01-06 1463 days
Roy Eugene Barnes 1999-01-11 2003-01-13 1463 days
Ruby Laffoon 1931-12-08 1935-12-10 1463 days
Ruffin Golson Pleasant 1916-05-15 1920-05-17 1463 days
Samuel Aaron Baker 1925-01-12 1929-01-14 1463 days
Samuel Bell 1819-06-03 1823-06-05 1463 days
Samuel Marvin Griffin Sr.  1955-01-11 1959-01-13 1463 days
Seth Gordon Persons 1951-01-15 1955-01-17 1463 days
Seth Padelford 1869-05-25 1873-05-27 1463 days
Sherman Willard Tribbitt 1973-01-16 1977-01-18 1463 days
Sidney Johnston Catts 1917-01-02 1921-01-04 1463 days
Sidney Sanders McMath 1949-01-11 1953-01-13 1463 days
Sigurd Anderson 1951-01-02 1955-01-04 1463 days
Silas Alexander Holcomb 1895-01-03 1899-01-05 1463 days
Simeon Selby Pennewill 1909-01-19 1913-01-21 1463 days
Simeon Slavens Willis 1943-12-07 1947-12-09 1463 days
Simon Bamberger 1917-01-01 1921-01-03 1463 days
Simon Pollard Hughes Jr.  1885-01-15 1889-01-17 1463 days
Stanley Calef Wilson 1931-01-08 1935-01-10 1463 days
Stanley Graham Stephens 1989-01-02 1993-01-04 1463 days
Stephen Cambreleng Cowper 1986-12-01 1990-12-03 1463 days
Stephen Everett Merrill 1993-01-07 1997-01-09 1463 days
Sterling Price 1853-01-03 1857-01-05 1463 days
Sumner Sewall 1941-01-01 1945-01-03 1463 days
Tasker Lowndes Oddie 1911-01-02 1915-01-04 1463 days
Terence Richard McAuliffe 2014-01-11 2018-01-13 1463 days
Theodore Strickland 2007-01-08 2011-01-10 1463 days
Thomas Chipman McRae 1921-01-11 1925-01-13 1463 days
Thomas Elliot Bramlette 1863-09-01 1867-09-03 1463 days
Thomas Gordon McLeod 1923-01-16 1927-01-18 1463 days
Thomas Joseph Meskill Jr.  1971-01-06 1975-01-08 1463 days
Thomas Mitchell Campbell 1907-01-15 1911-01-17 1463 days
Thomas Overton Moore 1860-01-23 1864-01-25 1463 days
Thomas Paul Salmon 1973-01-04 1977-01-06 1463 days
Thomas Riley Marshall 1909-01-11 1913-01-13 1463 days
Thomas Theodore Crittenden 1881-01-10 1885-01-12 1463 days
Thomas Watkins Ligon 1854-01-11 1858-01-13 1463 days
Thomas Wingett Corbett Jr.  2011-01-18 2015-01-20 1463 days
Timothy Michael Kaine 2006-01-14 2010-01-16 1463 days
Victor Emanuel Anderson 1955-01-06 1959-01-08 1463 days
Wallace Glenn Wilkinson 1987-12-08 1991-12-10 1463 days
Walter Joseph Hickel 1990-12-03 1994-12-05 1463 days
Walter Marcus Pierce 1923-01-08 1927-01-10 1463 days
Walter Roscoe Stubbs 1909-01-11 1913-01-13 1463 days
Walter Rutherford Peterson Jr.  1969-01-02 1973-01-04 1463 days
Wesley Powell 1959-01-01 1963-01-03 1463 days
Willard Mitt Romney 2003-01-02 2007-01-04 1463 days
William Alexander Allain 1984-01-10 1988-01-12 1463 days
William Alexis Stone 1899-01-17 1903-01-20 1463 days
William Barkley Cooper 1841-01-19 1845-01-21 1463 days
William Brimage Bate 1883-01-15 1887-01-17 1463 days
William Burton 1859-01-18 1863-01-20 1463 days
William duHamel Denney 1921-01-18 1925-01-20 1463 days
William Dunnington Bloxham 1897-01-05 1901-01-08 1463 days
William Eugene Stanley Sr.  1899-01-09 1903-01-12 1463 days
William Henry McMaster 1921-01-04 1925-01-06 1463 days
William Jason Fields 1923-12-11 1927-12-13 1463 days
William Joel Stone 1893-01-09 1897-01-11 1463 days
William John McConnell 1893-01-02 1897-01-04 1463 days
William Jonathan Northen 1894-10-27 1898-10-29 1463 days
William Kerr Scott 1949-01-06 1953-01-08 1463 days
William Lloyd Harding 1917-01-11 1921-01-13 1463 days
William Lowe Waller Sr.  1972-01-18 1976-01-20 1463 days
William Martin Walker 2014-12-01 2018-12-03 1463 days
William McKinley 1892-01-11 1896-01-13 1463 days
William Milo Stone 1864-01-14 1868-01-16 1463 days
William Munford Tuck 1946-01-15 1950-01-17 1463 days
William O’Connell Bradley 1895-12-10 1899-12-12 1463 days
William Owsley 1844-09-04 1848-09-06 1463 days
William Perry Clements Jr.  1979-01-16 1983-01-18 1463 days
William Read Miller 1877-01-11 1881-01-13 1463 days
William Tharp 1847-01-19 1851-01-21 1463 days
William Titcomb Cobb 1905-01-04 1909-01-06 1463 days
William Tudor Gardiner 1929-01-02 1933-01-04 1463 days
William Wallace Barron 1961-01-16 1965-01-18 1463 days
William Wallace Thayer 1878-09-11 1882-09-13 1463 days
William Warren Scranton 1963-01-15 1967-01-17 1463 days
William Wolcott Ellsworth 1838-05-02 1842-05-04 1463 days
William Woodward Brandon 1923-01-15 1927-01-17 1463 days
Winthrop Rockefeller 1967-01-10 1971-01-12 1463 days
George Smith Houston 1874-11-24 1878-11-27 1464 days
Henry Harrison Markham 1891-01-08 1895-01-11 1464 days
Henry Howland Crapo 1865-01-03 1869-01-06 1464 days
Henry Huntly Haight 1867-12-05 1871-12-08 1464 days
Henry Watkins Collier 1849-12-17 1853-12-20 1464 days
Isaac Shelby 1792-06-04 1796-06-07 1464 days
James Eubert Holshouser Jr.  1973-01-05 1977-01-08 1464 days
James Terry Sanford 1961-01-05 1965-01-08 1464 days
Joseph Robert Kerrey 1983-01-06 1987-01-09 1464 days
Luke Pryor Blackburn 1879-09-02 1883-09-05 1464 days
Robert Burns Smith 1897-01-03 1901-01-07 1464 days
Samuel Jordan Kirkwood 1860-01-11 1864-01-14 1464 days
Simon Bolivar Buckner 1887-08-30 1891-09-02 1464 days
Theodore Gilmore Bilbo 1928-01-16 1932-01-19 1464 days
Thomas Matthew Berry 1933-01-02 1937-01-05 1464 days
William Dunnington Bloxham 1881-01-04 1885-01-07 1464 days
William Walton Kitchin 1909-01-12 1913-01-15 1464 days
John Peter Richardson III 1886-11-30 1890-12-04 1465 days
Joseph Duncan 1834-12-03 1838-12-07 1465 days
Rufus Willis Cobb 1878-11-27 1882-12-01 1465 days
Edward Everett 1836-01-13 1840-01-18 1466 days
Peter Turney 1893-01-16 1897-01-21 1466 days
Robert Lucas 1832-12-07 1836-12-12 1466 days
Stephen P. Hempstead 1850-12-04 1854-12-09 1466 days
Theodore Thurston Geer 1899-01-09 1903-01-15 1466 days
Andrew Ericson Lee 1897-01-01 1901-01-08 1467 days
Thomas Worthington 1814-12-08 1818-12-14 1467 days
Edmund Jackson Davis 1870-01-08 1874-01-15 1468 days
William Preston Lane Jr.  1947-01-03 1951-01-10 1468 days
Jonas Galusha 1809-10-14 1813-10-23 1470 days
Malcolm Rice Patterson 1907-01-17 1911-01-26 1470 days
Thomas Metcalfe 1828-08-26 1832-09-04 1470 days
Thomas Clement Fletcher 1865-01-02 1869-01-12 1471 days
Williams Ellsworth Glasscock 1909-03-04 1913-03-14 1471 days
Isaac Shelby 1812-08-24 1816-09-05 1473 days
William Henry Davis Murray 1931-01-01 1935-01-13 1473 days
John Anthony Volpe 1965-01-07 1969-01-22 1476 days
William Adams Palmer 1831-10-18 1835-11-02 1476 days
Albert Edward Mead 1905-01-11 1909-01-27 1477 days
Israel Pickens 1821-11-09 1825-11-25 1477 days
Andrew Johnson 1853-10-17 1857-11-03 1478 days
Benjamin Fitzpatrick 1841-11-22 1845-12-10 1479 days
John Floyd 1830-03-04 1834-03-31 1488 days
James Davis Porter 1875-01-18 1879-02-16 1490 days
William Irwin 1875-12-09 1880-01-08 1491 days
Andrew Jackson Montague 1902-01-01 1906-02-01 1492 days
John Albert Kitzhaber 2011-01-10 2015-02-18 1500 days
Austin Augustus King 1848-11-20 1853-01-03 1505 days
William Larrabee 1886-01-14 1890-02-27 1505 days
Frank Collins Emerson 1927-01-03 1931-02-18 1507 days
Lloyd Crow Stark 1937-01-11 1941-02-26 1507 days
Lilburn William Boggs 1836-09-30 1840-11-16 1508 days
James Withycombe 1915-01-12 1919-03-03 1511 days
James Sevier Conway 1836-09-13 1840-11-04 1513 days
Keen Johnson 1939-10-09 1943-12-07 1520 days
Shadrach Bond 1818-10-06 1822-12-05 1521 days
Thomas Stevenson Drew 1844-11-09 1849-01-10 1523 days
Stevens Thomas Mason 1835-11-03 1840-01-07 1526 days
Alexander McNair 1820-09-10 1824-11-15 1527 days
Walter Samuel Goodland 1943-01-04 1947-03-12 1528 days
Isaac Murphy 1864-04-18 1868-07-02 1536 days
John Young Brown 1891-09-02 1895-12-10 1560 days
David Christy Butler 1867-02-21 1871-06-02 1562 days
Gilbert Carlton Walker 1869-09-21 1874-01-01 1563 days
DeForest Richards 1899-01-02 1903-04-28 1576 days
Harold Edward Stassen 1939-01-02 1943-04-27 1576 days
John Hancock 1780-10-25 1785-02-17 1576 days
Zenas Ferry Moody 1882-09-13 1887-01-12 1582 days
Isham Green Harris 1857-11-03 1862-03-12 1590 days
William Charles Cole Claiborne 1812-07-30 1816-12-17 1601 days
Robert Kingston Scott 1868-07-06 1872-12-07 1615 days
Henry Clay Warmoth 1868-06-27 1872-12-09 1626 days
Harrison Reed 1868-07-04 1873-01-07 1648 days
John Cotton Smith 1812-10-25 1817-05-08 1656 days
Preston Hopkins Leslie 1871-02-03 1875-08-31 1670 days
Frank Finley Merriam 1934-06-02 1939-01-02 1675 days
Jon Meade Huntsman Jr.  2005-01-03 2009-08-11 1681 days
Allen Daniel Candler 1902-10-25 1907-06-29 1708 days
Austin Peay 1923-01-16 1927-10-03 1721 days
John Albert Johnson 1905-01-04 1909-09-21 1721 days
Luther Wallace Youngdahl 1947-01-08 1951-09-27 1723 days
James Howard McGrath 1941-01-07 1945-10-06 1733 days
Edwin Lee Norris 1908-04-01 1913-01-05 1740 days
Earl Wilcox Snell 1943-01-11 1947-10-30 1753 days
Harvey Parnell 1928-03-14 1933-01-10 1763 days
Joseph Graham Davis Jr.  1999-01-04 2003-11-17 1778 days
George Wylie Paul Hunt 1912-02-14 1917-01-01 1783 days
Lynn Joseph Frazier 1917-01-03 1921-11-23 1785 days
Norman Stanley Case 1928-02-04 1933-01-03 1795 days
Emanuel Willis Wilson 1885-03-04 1890-02-06 1800 days
John Rankin Rogers 1897-01-13 1901-12-26 1807 days
Julian Morton Carroll 1974-12-28 1979-12-11 1809 days
William Calhoun McDonald 1912-01-14 1917-01-01 1814 days
Robert Marion La Follette Sr.  1901-01-07 1906-01-01 1820 days
Albion Keith Parris 1822-01-05 1827-01-03 1824 days
Lucius Frederick Hubbard 1882-01-10 1887-01-09 1825 days
Robert Brooke 1791-12-01 1796-11-30 1826 days
James Ole Davidson 1906-01-01 1911-01-02 1827 days
John Albion Andrew 1861-01-03 1866-01-04 1827 days
John Brown Francis 1833-05-01 1838-05-02 1827 days
Joseph Alfred Arner Burnquist 1915-12-30 1921-01-05 1833 days
Jonas Gallusha 1815-10-14 1820-10-23 1836 days
Lawrence Winchester Wetherby 1950-11-27 1955-12-13 1842 days
James Whitcomb 1843-12-06 1848-12-27 1848 days
John Milton Thayer 1887-01-06 1892-02-08 1859 days
John Orlando Pastore 1945-10-06 1950-12-19 1900 days
Fielding Lewis Wright 1946-11-02 1952-01-22 1907 days
Goodwin Jess Knight 1953-10-05 1959-01-05 1918 days
Adolph Olson Eberhart 1909-09-21 1915-01-05 1932 days
Henry Hollis Horton 1927-10-03 1933-01-17 1933 days
Jane Dee Hull 1997-09-05 2003-01-06 1949 days
Sean Randall Parnell 2009-07-26 2014-12-01 1954 days
John Sparks 1903-01-05 1908-05-22 1964 days
Vail Montgomery Pittman 1945-07-24 1951-01-01 1987 days
Gerard Chittocque Brandon 1826-07-25 1832-01-09 1994 days
Coke Robert Stevenson 1941-08-04 1947-01-21 1996 days
John Sevier 1796-03-30 1801-09-23 2002 days
DeWitt Clinton 1817-06-30 1822-12-31 2010 days
William Dorsey Jelks 1901-06-11 1907-01-14 2043 days
Michael Lynn Parsons 2018-06-01 2024-01-09 2048 days
Floyd Bjornstjerne Olson 1931-01-06 1936-08-22 2055 days
Kimberly Kay Reynolds 2017-05-24 2023-01-10 2057 days
Arthur Ingram Boreman 1863-06-20 1869-02-26 2078 days
Robert Evander McNair Sr.  1965-04-22 1971-01-19 2098 days
Kay Ellen Ivey 2017-04-10 2023-01-16 2107 days
William Dennison Stephens 1917-03-15 1923-01-08 2125 days
Joseph Manchin III 2005-01-17 2010-11-15 2128 days
John Marshall Stone 1876-03-29 1882-01-29 2132 days
Jonathan Jennings 1816-11-07 1822-09-12 2135 days
William Shane Beardsley 1949-01-13 1954-11-21 2138 days
Louis Folwell Hart 1919-02-13 1925-01-14 2162 days
George Walker Bush 1995-01-17 2000-12-21 2165 days
Francis Williams Sargent 1969-01-22 1975-01-02 2171 days
Patrick Joseph Quinn Jr.  2009-01-29 2015-01-12 2174 days
Silas Hemenway Jennison 1835-11-02 1841-10-15 2174 days
Janice Kay Brewer 2009-01-21 2015-01-05 2175 days
Harold Everett Hughes 1963-01-17 1969-01-01 2176 days
Thomas Jordan Jarvis 1879-02-05 1885-01-21 2177 days
Conrad Baker 1867-01-24 1873-01-13 2181 days
Ellas Rosa Giovana Oliva Grasso 1975-01-08 1980-12-31 2184 days
Wendell Richard Anderson 1971-01-04 1976-12-29 2186 days
John Sevier 1803-09-23 1809-09-20 2189 days
Orville Lothrop Freeman 1955-01-05 1961-01-02 2189 days
Fred George Aandahl 1945-01-04 1951-01-03 2190 days
John Harper Trumbull 1925-01-08 1931-01-07 2190 days
John Henry Sununu 1983-01-06 1989-01-04 2190 days
Alex Joseph Groesbeck 1921-01-01 1927-01-01 2191 days
Andrew Gregg Curtin 1861-01-15 1867-01-15 2191 days
Aram Jules Pothier 1909-01-05 1915-01-05 2191 days
Bryant Butler Brooks 1905-01-02 1911-01-02 2191 days
Charles Benjamin Ross 1931-01-05 1937-01-04 2191 days
Christopher Thomas Sununu 2017-01-05 2023-01-05 2191 days
Cynthia Jeanne Shaheen 1997-01-09 2003-01-09 2191 days
Dolph Briscoe Jr.  1973-01-16 1979-01-16 2191 days
Dwight Palmer Giswold 1941-01-09 1947-01-09 2191 days
Edward Daniel DiPrete 1985-01-01 1991-01-01 2191 days
Emanuel Lorenz Philipp 1915-01-04 1921-01-03 2191 days
Frank Brenner Morrison 1961-01-05 1967-01-05 2191 days
Frederick Valdemar Erastus Peterson 1947-01-09 1953-01-08 2191 days
George Wolf 1829-12-15 1835-12-15 2191 days
Henry Dargan McMaster 2017-01-24 2023-01-24 2191 days
Jeff Davis 1901-01-18 1907-01-18 2191 days
John Andrew Shulze 1823-12-16 1829-12-15 2191 days
John Burke 1907-01-09 1913-01-08 2191 days
John Frederick Hartranft 1873-01-21 1879-01-21 2191 days
John Hammill 1925-01-15 1931-01-15 2191 days
John James Blaine 1921-01-03 1927-01-03 2191 days
John Jay 1795-06-30 1801-06-30 2191 days
John Moses 1939-01-05 1945-01-04 2191 days
John William Bricker 1939-01-09 1945-01-08 2191 days
John William King 1963-01-03 1969-01-02 2191 days
Leslie Andrew Miller 1933-01-02 1939-01-02 2191 days
Lester Callaway Hunt Sr.  1943-01-04 1949-01-03 2191 days
Leverett A. Saltonstall 1939-01-05 1945-01-04 2191 days
Lucius Fairchild 1866-01-01 1872-01-01 2191 days
Madeleine May Kunin 1985-01-10 1991-01-10 2191 days
Marcus H. Holcomb 1915-01-06 1921-01-05 2191 days
Marion Price Daniel Sr.  1957-01-15 1963-01-15 2191 days
Meldrim Thomson Jr.  1973-01-04 1979-01-04 2191 days
Noah Noble 1831-12-07 1837-12-06 2191 days
Paul Fannin 1959-01-05 1965-01-04 2191 days
Peter Elliott Shumlin 2011-01-06 2017-01-05 2191 days
Philip Brian Scott 2017-01-05 2023-01-05 2191 days
Philip Henderson Hoff 1963-01-10 1969-01-09 2191 days
Robert Livingston Beeckman 1915-01-05 1921-01-04 2191 days
Stephen Lucid Robert McNichols 1957-01-08 1963-01-08 2191 days
Theodore Christianson 1925-01-06 1931-01-06 2191 days
Thomas LeRoy Collins 1955-01-04 1961-01-03 2191 days
Warren Perley Knowles 1965-01-04 1971-01-04 2191 days
William Carroll 1821-10-01 1827-10-01 2191 days
William Herbert Adams 1927-01-11 1933-01-10 2191 days
William Learned Marcy 1832-12-31 1838-12-31 2191 days
William Pennington 1837-10-27 1843-10-27 2191 days
Alfred Emanuel Smith 1922-12-31 1928-12-31 2192 days
Fred Maltby Warner 1905-01-01 1911-01-02 2192 days
John Jeremiah Jacob 1871-03-04 1877-03-04 2192 days
Richard Hudson Bryan 1983-01-03 1989-01-03 2192 days
William Prentice Cooper Jr.  1939-01-16 1945-01-16 2192 days
Frank Goad Clement 1953-01-15 1959-01-19 2195 days
John Sargent Pillsbury 1876-01-07 1882-01-10 2195 days
Joseph McMinn 1815-09-27 1821-10-01 2196 days
Alvin Victor Donahey 1923-01-08 1929-01-14 2198 days
Clarence Norman Brunsdale 1951-01-03 1957-01-09 2198 days
David Rittenhouse Porter 1839-01-15 1845-01-21 2198 days
George Wylie Paul Hunt 1923-01-01 1929-01-07 2198 days
John Bowden Connally Jr.  1963-01-15 1969-01-21 2198 days
John Lester Hubbard Chafee 1963-01-01 1969-01-07 2198 days
John Marshall Stone 1890-01-13 1896-01-20 2198 days
John White Geary 1867-01-15 1873-01-21 2198 days
Robert Leroy Cochran 1935-01-03 1941-01-09 2198 days
Walter Jodok Kohler Jr.  1951-01-01 1957-01-07 2198 days
William Jones 1811-05-01 1817-05-07 2198 days
Willie Blount 1809-09-20 1815-09-27 2198 days
Oliver Hazard Perry Throck Morton 1861-01-16 1867-01-24 2199 days
Jack Stewart Dalrymple III 2010-12-07 2016-12-15 2200 days
William Carroll 1829-10-01 1835-10-12 2202 days
Nimrata Nikki Haley 2011-01-12 2017-01-24 2204 days
Michael Owens Johanns 1999-01-07 2005-01-20 2205 days
Janet Ann Napolitano 2003-01-06 2009-01-21 2207 days
Abraham Alexander Ribicoff 1955-01-05 1961-01-21 2208 days
Rod Blagojevich 2003-01-13 2009-01-29 2208 days
Cecil Dale Andrus 1971-01-04 1977-01-24 2212 days
George Wilcken Romney 1963-01-01 1969-01-22 2213 days
Henry Goode Blasdel 1864-12-05 1871-01-02 2219 days
Shelby Moore Cullom 1877-01-08 1883-02-05 2219 days
Ernest Lister 1913-01-15 1919-02-13 2220 days
Augustus Chaflin French 1846-12-09 1853-01-10 2224 days
George Earle Chamberlain Sr.  1903-01-15 1909-03-01 2237 days
Herman Eugene Talmadge 1948-11-17 1955-01-11 2246 days
Gina Marie Raimondo 2015-01-06 2021-03-02 2247 days
Luther Hartwell Hodges 1954-11-07 1961-01-05 2251 days
Earl Ray Tomblin 2010-11-15 2017-01-16 2254 days
Hiram Warren Johnson 1911-01-03 1917-03-15 2263 days
Robert Julian Bentley 2011-01-17 2017-04-10 2275 days
Harold Guy Hunt 1987-01-19 1993-04-22 2285 days
George Speaker Mickelson 1987-01-06 1993-04-19 2295 days
Kathleen Sebelius 2003-01-13 2009-04-28 2297 days
Terry Edward Branstad 2011-01-14 2017-05-24 2322 days
John Hancock 1787-05-30 1793-10-08 2323 days
La Fayette Grover 1870-09-14 1877-02-01 2332 days
John Fife Symington III 1991-03-06 1997-09-05 2375 days
Patrick Joseph Lucey 1971-01-04 1977-07-06 2375 days
Mary Carolyn Rell 2004-07-01 2011-01-05 2379 days
Edward Peter Carville 1939-01-02 1945-07-24 2395 days
William Floyd Weld 1991-01-03 1997-07-29 2399 days
Samuel Douglas McEnery 1881-10-16 1888-05-21 2409 days
Joshua Clayton 1789-06-02 1796-01-19 2422 days
Frank Lewis O’Bannon 1997-01-13 2003-09-13 2434 days
Thomas Joseph Ridge 1995-01-17 2001-10-05 2453 days
Reinhold Sadler 1896-04-10 1903-01-05 2460 days
James Brown Ray 1825-02-12 1831-12-07 2489 days
John Miller 1826-01-20 1832-11-19 2495 days
Albert Baird Cummins 1902-01-16 1908-11-24 2504 days
Thomas Chittenden 1790-10-13 1797-08-25 2508 days
Francis Harrison Pierpont 1861-05-15 1868-04-04 2516 days
Timothy Milford Babcock 1962-01-25 1969-01-06 2538 days
David Bennett Hill 1885-01-06 1891-12-31 2550 days
Alfred Eastlack Driscoll 1947-01-21 1954-01-19 2555 days
Caleb Strong 1800-05-30 1807-05-29 2555 days
James Fenner 1824-05-05 1831-05-04 2555 days
John Brooks 1816-05-30 1823-05-31 2557 days
George Nixon Briggs 1844-01-09 1851-01-11 2559 days
Jeremiah McLain Rusk 1882-01-02 1889-01-07 2562 days
John Hathaway Reed 1959-12-30 1967-01-05 2563 days
Christine Todd Whitman 1994-01-18 2001-01-31 2570 days
Samuel Dale Brownback 2011-01-10 2018-01-31 2578 days
Joseph Albert Wright 1849-12-05 1857-01-12 2595 days
Arnold Alois Schwarzenegger 2003-11-17 2011-01-03 2604 days
Frederick Bennett Balzar 1927-01-03 1934-03-21 2634 days
Joseph Kemp Toole 1901-01-07 1908-04-01 2641 days
Otto Kerner Jr.  1961-01-09 1968-05-21 2689 days
Sidney Preston Oscborn 1941-01-06 1948-05-25 2696 days
Dirk Arthur Kempthorne 1999-01-04 2006-05-26 2699 days
Robert Allan Shivers 1949-07-11 1957-01-15 2745 days
Richard Francis Kneip 1971-01-05 1978-07-24 2757 days
Joseph Emerson Brown 1857-11-06 1865-06-17 2780 days
Henry Horner 1933-01-09 1940-10-06 2827 days
Melvin Eugene Carnahan 1993-01-11 2000-10-16 2835 days
Edwin Washington Edwards 1972-05-09 1980-03-10 2862 days
John Crepps Wickliffe Beckham 1900-02-03 1907-12-10 2866 days
Katherine Brown 2015-02-18 2023-01-09 2882 days
William Allen Egan 1959-01-03 1966-12-05 2893 days
Lawton Mainor Chiles Jr.  1991-01-08 1998-12-12 2895 days
James Caleb Boggs 1953-01-20 1960-12-30 2901 days
George Albert Sinner 1985-01-01 1992-12-15 2905 days
Robert Lowry 1882-01-29 1890-01-13 2906 days
Thomas Richard Carper 1993-01-19 2001-01-03 2906 days
Michael Newbold Castle 1985-01-15 1992-12-31 2907 days
George Victor Voinovich 1991-01-14 1998-12-31 2908 days
Herbert Romulus O’Conor 1939-01-11 1947-01-03 2914 days
Frank John Lausche 1949-01-10 1957-01-03 2915 days
Albert Dean Rosellini 1957-01-16 1965-01-13 2919 days
Anthony Carroll Knowles 1994-12-05 2002-12-02 2919 days
Arne Helge Carlson 1991-01-07 1999-01-04 2919 days
Benjamin Jerome Cayetano 1994-12-05 2002-12-02 2919 days
Cecil Dale Andrus 1987-01-05 1995-01-02 2919 days
Charles Bradford Henry 2003-01-13 2011-01-10 2919 days
Christopher James Christie 2010-01-19 2018-01-16 2919 days
Daniel Kirkwood Fordice Jr.  1992-01-14 2000-01-11 2919 days
David Duane Freudenthal 2003-01-06 2011-01-03 2919 days
Dennis Martin Daugaard 2011-01-08 2019-01-05 2919 days
Donal Neil O’Callaghan 1971-01-04 1979-01-01 2919 days
Donald Kenneth Sundquist 1995-01-21 2003-01-18 2919 days
Donald Louis Carcieri 2003-01-07 2011-01-04 2919 days
Doug Anthony Ducey Jr.  2015-01-05 2023-01-02 2919 days
Dwight Herbert Green 1941-01-13 1949-01-10 2919 days
Edmund Gerald Brown 1959-01-05 1967-01-02 2919 days
Edmund Gerald Brown Jr.  1975-01-06 1983-01-03 2919 days
Edward Gene Rendell 2003-01-21 2011-01-18 2919 days
Emmet Derby Boyle 1915-01-04 1923-01-01 2919 days
Frank Grant Sawyer 1959-01-05 1967-01-02 2919 days
Gary Faye Locke 1997-01-15 2005-01-12 2919 days
George Corley Wallace Jr.  1971-01-18 1979-01-15 2919 days
George Dekle Busbee Sr.  1975-01-14 1983-01-11 2919 days
George Dewey Clyde 1957-01-07 1965-01-04 2919 days
George Ervin Perdue III 2003-01-13 2011-01-10 2919 days
George Henry Dern 1925-01-05 1933-01-02 2919 days
Gregory Wayne Abbott 2015-01-20 2023-01-17 2919 days
Haley Reeves Barbour 2004-01-13 2012-01-10 2919 days
Herbert Brown Maw 1941-01-06 1949-01-03 2919 days
Jack Alan Markell 2009-01-20 2017-01-17 2919 days
James Allen Rhodes 1963-01-14 1971-01-11 2919 days
James Allen Rhodes 1975-01-13 1983-01-10 2919 days
James Baxter Hunt Jr.  1977-01-08 1985-01-05 2919 days
James Baxter Hunt Jr.  1993-01-09 2001-01-06 2919 days
James Conley Justice II 2017-01-16 2025-01-13 2919 days
James Edgar 1991-01-14 1999-01-11 2919 days
James Edward Doyle Jr.  2003-01-06 2011-01-03 2919 days
James Holley Douglas 2003-01-09 2011-01-06 2919 days
Jeremiah Wilson Nixon 2009-01-12 2017-01-09 2919 days
John Bel Edwards 2016-01-11 2024-01-08 2919 days
John David Ashcroft 1985-01-14 1993-01-11 2919 days
John Davison Rockefeller IV 1977-01-17 1985-01-14 2919 days
John Elias Baldacci 2003-01-08 2011-01-05 2919 days
John Ellis Bush 1999-01-05 2007-01-02 2919 days
John Hayden Lynch 2005-01-06 2013-01-03 2919 days
John Hugo Aronson 1953-01-05 1961-01-02 2919 days
John James Exon 1971-01-07 1979-01-04 2919 days
John Joseph Garrahy 1977-01-04 1985-01-01 2919 days
John Julian McKeithen 1964-05-12 1972-05-09 2919 days
John Wright Hickenlooper Jr.  2011-01-11 2019-01-08 2919 days
Kenneth Carroll Guinn 1999-01-04 2007-01-01 2919 days
Kenneth Merwin Curtis 1967-01-05 1975-01-02 2919 days
Marc Racicot 1993-01-04 2001-01-01 2919 days
Mark Odom Hatfield 1959-01-12 1967-01-09 2919 days
Marshall Clement Sanford Jr.  2003-01-15 2011-01-12 2919 days
Michael John Sullivan 1987-01-05 1995-01-02 2919 days
Michael Stanley Dukakis 1983-01-06 1991-01-03 2919 days
Milton Jerold Shapp 1971-01-19 1979-01-16 2919 days
Norman Howard Bangerter 1985-01-07 1993-01-04 2919 days
Parris Nelson Glendening 1995-01-18 2003-01-15 2919 days
Paul Edward Patton 1995-12-12 2003-12-09 2919 days
Paul Richard LePage 2011-01-05 2019-01-02 2919 days
Peter Barton Wilson 1991-01-07 1999-01-04 2919 days
Philip Norman Bredesen Jr.  2003-01-18 2011-01-15 2919 days
Pierre Samuel du Pont IV 1977-01-18 1985-01-15 2919 days
Piyush Jindal 2008-01-14 2016-01-11 2919 days
Reubin O’Donovan Askew 1971-01-05 1979-01-02 2919 days
Robert Alphonso Taft III 1999-01-11 2007-01-08 2919 days
Robert Baumle Meyner 1954-01-19 1962-01-16 2919 days
Robert Dunkerson Orr 1981-01-12 1989-01-09 2919 days
Robert Patrick Casey Sr.  1987-01-20 1995-01-17 2919 days
Robert Renfroe Riley 2003-01-20 2011-01-17 2919 days
Roland Hill Hartley 1925-01-14 1933-01-11 2919 days
Samuel Clarence Ford 1941-01-06 1949-01-03 2919 days
Samuel Vernon Stewart 1913-01-05 1921-01-02 2919 days
Stephen Clark Bullock 2013-01-07 2021-01-04 2919 days
Steven Lynn Beshear 2007-12-11 2015-12-08 2919 days
Theodore Ralph Kulongoski 2003-01-13 2011-01-10 2919 days
Theodore Schwinden 1981-01-05 1989-01-02 2919 days
Thomas Howard Kean 1982-01-19 1990-01-16 2919 days
Thomas James Wilsack 1999-01-15 2007-01-12 2919 days
Thomas Westerman Wolf 2015-01-20 2023-01-17 2919 days
Timothy James Pawlenty 2003-01-06 2011-01-03 2919 days
Walter Wolfkiel Bacon 1941-01-21 1949-01-18 2919 days
Warren Eastman Hearnes 1965-01-11 1973-01-08 2919 days
Wilbur Lucius Cross 1931-01-07 1939-01-04 2919 days
William Alfred Buckingham 1858-05-05 1866-05-02 2919 days
William Asa Hutchinson II 2015-01-13 2023-01-10 2919 days
William Booth Gardner 1985-01-16 1993-01-13 2919 days
William Forrester Owens 1999-01-12 2007-01-09 2919 days
William Gaston Caperton III 1989-01-16 1997-01-13 2919 days
William Grant Stratton 1953-01-12 1961-01-09 2919 days
William Spry 1909-01-04 1917-01-01 2919 days
Zell Bryan Miller 1991-01-14 1999-01-11 2919 days
Carroll Ashmore Campbell Jr.  1987-01-13 1995-01-11 2920 days
Earl Benjamin Nelson 1991-01-09 1999-01-07 2920 days
John Rettie McKernan Jr.  1987-01-07 1995-01-05 2920 days
William Donald Schaefer 1987-01-20 1995-01-18 2920 days
William Greene 1778-05-04 1786-05-03 2921 days
Andrew Lamar Alexander Jr.  1979-01-17 1987-01-17 2922 days
Charles Duane Baker Jr.  2015-01-08 2023-01-08 2922 days
Douglas James Burgum 2016-12-15 2024-12-15 2922 days
Edward Thomas Schafer 1992-12-15 2000-12-15 2922 days
Eric Joseph Holcomb 2017-01-09 2025-01-09 2922 days
Gary Earl Johnson 1995-01-01 2003-01-01 2922 days
Hugh Leo Carey 1974-12-31 1982-12-31 2922 days
James Johnston Blanchard 1983-01-01 1991-01-01 2922 days
Jennifer Mulhern Granholm 2003-01-01 2011-01-01 2922 days
Lawrence Joseph Hogan Jr.  2015-01-21 2023-01-21 2922 days
Philip Dunton Murphy 2018-01-16 2026-01-16 2922 days
Richard Dale Snyder 2011-01-01 2019-01-01 2922 days
Susana Martinez 2011-01-01 2019-01-01 2922 days
William Blaine Richardson III 2003-01-01 2011-01-01 2922 days
William John Janklow 1995-01-07 2003-01-07 2922 days
Daniel Robert Graham 1979-01-02 1987-01-03 2923 days
Elias Nelson Conway 1852-11-15 1860-11-16 2923 days
Marion Michael Rounds 2003-01-07 2011-01-08 2923 days
Roy Asberry Cooper III 2017-01-01 2025-01-03 2924 days
Sylvester Pennoyer 1887-01-12 1895-01-14 2924 days
Angus Stanley King Jr.  1995-01-05 2003-01-08 2925 days
Joe Frank Harris 1983-01-11 1991-01-14 2925 days
John Charles Carney Jr.  2017-01-17 2025-01-20 2925 days
Richard Lynn Scott 2011-01-04 2019-01-07 2925 days
Richard Wilson Riley 1979-01-10 1987-01-13 2925 days
Arch Alfred Moore Jr.  1969-01-13 1977-01-17 2926 days
Arthur Albert Link 1973-01-02 1981-01-06 2926 days
Arthur Bernard Langlie 1949-01-12 1957-01-16 2926 days
Bill Preston Graves 1995-01-09 2003-01-13 2926 days
Birch Evans Bayh III 1989-01-09 1997-01-13 2926 days
Brendan Thomas Byrne 1974-01-15 1982-01-19 2926 days
Brian David Schweitzer 2005-01-03 2013-01-07 2926 days
Brian Edward Sandoval 2011-01-03 2019-01-07 2926 days
Charles Hinton Russell 1951-01-01 1959-01-05 2926 days
Christine O’Grady Gregoire 2005-01-12 2013-01-16 2926 days
Clarence Daniel Martin 1933-01-11 1941-01-15 2926 days
Clayton Douglass Buck 1929-01-15 1937-01-19 2926 days
Courken George Deukmejian Jr.  1983-01-03 1991-01-07 2926 days
Dannel Patrick Malloy 2011-01-05 2019-01-09 2926 days
David Yutaka Ige 2014-12-01 2022-12-05 2926 days
Dennis Joseph Roberts 1951-01-02 1959-01-06 2926 days
Deval Laurdine Patrick 2007-01-04 2015-01-08 2926 days
Dewey Philip Bryant 2012-01-10 2020-01-14 2926 days
Edmund Gerland Brown Jr.  2011-01-03 2019-01-07 2926 days
Frank Anthony Keating II 1995-01-09 2003-01-13 2926 days
George Patterson Nigh 1979-01-08 1987-01-12 2926 days
Henry Hooper Blood 1933-01-02 1941-01-06 2926 days
Jack Williams 1967-01-02 1975-01-06 2926 days
James Edward Geringer 1995-01-02 2003-01-06 2926 days
James Grubbs Martin 1985-01-05 1993-01-09 2926 days
Jay Sterner Hammond 1974-12-02 1982-12-06 2926 days
John Albert Kitzhaber 1995-01-09 2003-01-13 2926 days
John David Waihe’e III 1986-12-01 1994-12-05 2926 days
John Nathan Deal 2011-01-10 2019-01-14 2926 days
John Peter Ricketts 2015-01-08 2023-01-12 2926 days
John Richard Kasich Jr.  2011-01-10 2019-01-14 2926 days
John Willaim Carlin 1979-01-08 1987-01-12 2926 days
Joseph Bracken Lee 1949-01-03 1957-01-07 2926 days
Joseph Edward Brennan 1979-01-03 1987-01-07 2926 days
Lennington Small 1921-01-10 1929-01-14 2926 days
Lewis Rice Bradley 1871-01-02 1879-01-06 2926 days
Lincoln Carter Almond 1995-01-03 2003-01-07 2926 days
Linda Lingle 2002-12-02 2010-12-06 2926 days
Mark Brandt Dayton 2011-01-03 2019-01-07 2926 days
Martin Joseph O’Malley 2007-01-17 2015-01-21 2926 days
Mary Fallin 2011-01-10 2019-01-14 2926 days
Matthew Hansen Mead 2011-01-03 2019-01-07 2926 days
Michael Francis Easley 2001-01-06 2009-01-10 2926 days
Mickey Dale Beebe 2007-01-09 2015-01-13 2926 days
Mitchell Elias Daniels Jr.  2005-01-10 2013-01-14 2926 days
Murphy James Foster 1892-05-16 1900-05-21 2926 days
Murphy James Foster Jr.  1996-01-08 2004-01-12 2926 days
Ned Ray McWherter 1987-01-17 1995-01-21 2926 days
Otis Ray Bowen 1973-01-08 1981-01-12 2926 days
Richard Arkwright Snelling 1977-01-06 1985-01-10 2926 days
Richard Frank Celeste 1983-01-10 1991-01-14 2926 days
Richard Joseph Hughes 1962-01-16 1970-01-20 2926 days
Richard Lewis Thornburgh 1979-01-16 1987-01-20 2926 days
Robert Blackwell Docking 1967-01-09 1975-01-13 2926 days
Ronald Wilson Reagan 1967-01-02 1975-01-06 2926 days
Rudolph George Perpich Sr.  1983-01-03 1991-01-07 2926 days
Scott Kevin Walker 2011-01-03 2019-01-07 2926 days
Scott Milne Matheson Jr.  1977-01-03 1985-01-07 2926 days
Stanley Knapp Hathaway 1967-01-02 1975-01-06 2926 days
Theodore Roosevelt McKeldin 1951-01-10 1959-01-14 2926 days
Thomas Lawson McCall 1967-01-09 1975-01-13 2926 days
Thomas Lee Judge 1973-01-01 1981-01-05 2926 days
Victor George Atiyeh 1979-01-08 1987-01-12 2926 days
William Edward Haslam 2011-01-15 2019-01-19 2926 days
Harry Roe Hughes 1979-01-15 1987-01-20 2927 days
William John Janklow 1979-01-01 1987-01-06 2927 days
John Millard Tawes 1959-01-14 1967-01-25 2933 days
Ruth Ann Minner 2001-01-03 2009-01-20 2939 days
Charles Samuel Deneen 1905-01-09 1913-02-03 2947 days
John Edward Erickson 1925-01-04 1933-03-13 2990 days
James Garrard 1796-06-07 1804-09-05 3011 days
Richard Howell 1793-06-03 1801-10-31 3071 days
Levi Lincoln Jr.  1825-05-26 1834-01-09 3150 days
Bruce Edward Babbitt 1978-03-04 1987-01-05 3229 days
Heber Manning Wells 1896-01-06 1905-01-02 3283 days
Simon Snyder 1808-12-20 1817-12-16 3283 days
Thomas Mifflin 1790-12-21 1799-12-17 3283 days
Joseph Bloomfield 1803-10-29 1812-10-29 3288 days
Thomas McKean 1799-12-17 1808-12-20 3290 days
John Grosvenor Rowland 1995-01-04 2004-07-01 3466 days
Samuel Huntington 1786-05-11 1796-01-05 3526 days
Daniel D. Tompkins 1807-06-30 1817-02-24 3527 days
William Jefferson Clinton 1983-01-11 1992-12-12 3623 days
Herbert Henry Lehman 1932-12-31 1942-12-03 3624 days
John Victor Evans Sr.  1977-01-24 1987-01-05 3633 days
John Noel Dempsey 1961-01-21 1971-01-06 3637 days
David Eugene Heineman 2005-01-20 2015-01-08 3640 days
Isaac Tichenor 1797-10-16 1807-10-09 3644 days
John Henry Hoeven III 2000-12-15 2010-12-07 3644 days
Oliver Woldcott Jr.  1817-05-08 1827-05-02 3646 days
Robert Joseph Miller 1989-01-03 1999-01-04 3653 days
William Atchison O’Neill 1980-12-31 1991-01-09 3661 days
Marvin Mandel 1969-01-07 1979-01-17 3662 days
Michael Dale Huckabee 1996-07-15 2007-01-09 3830 days
John Arthur Love 1963-01-08 1973-07-16 3842 days
Andrew Mark Cuomo 2010-12-31 2021-08-23 3888 days
Earl Warren 1943-01-04 1953-10-05 3927 days
James Milton Smith 1872-01-12 1882-11-04 3949 days
Michael Okerlund Leavitt 1993-01-04 2003-11-05 3957 days
John Taylor Gilman 1794-06-05 1805-06-06 4018 days
Gary Richard Herbert 2009-08-11 2021-01-04 4164 days
Howard Brush Dean III 1991-08-13 2003-01-09 4167 days
Jonathan Trumbull Jr.  1797-12-01 1809-08-07 4266 days
Jay Robert Inslee 2013-01-16 2025-01-13 4380 days
William Lewis Guy 1961-01-04 1973-01-02 4381 days
Calvin Lewellyn Rampton 1965-01-04 1977-01-03 4382 days
Daniel Jackson Evans 1965-01-13 1977-01-12 4382 days
Edgar Jacob Herschler 1975-01-06 1987-01-05 4382 days
George Ryoichi Ariyoshi 1974-12-02 1986-12-01 4382 days
John Anthony Burns 1962-12-03 1974-12-02 4382 days
Orval Eugene Faubus 1955-01-11 1967-01-10 4382 days
Richard Douglas Lamm 1975-01-14 1987-01-13 4382 days
Robert Eben Smylie 1955-01-03 1967-01-02 4382 days
Roy Rudolf Romer 1987-01-13 1999-01-12 4382 days
George Elmer Pataki 1994-12-31 2006-12-31 4383 days
Gerhard Menne Williams 1949-01-01 1961-01-01 4383 days
John Mathias Engler 1991-01-01 2003-01-01 4383 days
Mario Matthew Cuomo 1982-12-31 1994-12-31 4383 days
Thomas Edmund Dewey 1942-12-31 1954-12-31 4383 days
Charles Layman Terry Jr.  1957-01-19 1969-01-21 4385 days
Clement Leroy Otter 2007-01-01 2019-01-07 4389 days
Isaac Halstead Williamson 1817-02-01 1829-10-30 4654 days
William Livingston 1776-08-31 1790-07-25 5076 days
William Grawn Milliken 1969-01-22 1983-01-01 5092 days
Robert Dolph Ray 1969-01-16 1983-01-14 5111 days
James Robert Thompson Jr.  1977-01-10 1991-01-14 5117 days
Tommy George Thompson 1987-01-05 2001-02-01 5141 days
James Richard Perry 2000-12-21 2015-01-20 5143 days
Jonathan Trumbull Sr.  1769-10-01 1784-05-13 5338 days
Nelson Aldrich Rockefeller 1958-12-31 1973-12-18 5466 days
Albter Cabell Ritchie 1920-01-14 1935-01-09 5474 days
Arthur Fenner 1790-05-05 1805-10-15 5641 days
Terry Edward Branstad 1983-01-14 1999-01-15 5845 days
George Clinton 1777-07-30 1795-06-30 6544 days
William Henry Vanderbilt III 1839-01-03 1941-01-07 37259 days
William Cannon 1863-01-20 1965-03-01 37295 days
William Bigler 1852-01-20 1955-01-16 37616 days
Ephraim Franklin Morgon 1821-03-04 1925-03-04 37985 days
George Troup 1823-11-07 1927-11-07 37985 days
James Hubert Price 1838-01-18 1942-01-20 37987 days
William Dunn Moseley 1845-06-25 1949-10-01 38083 days

answer

January 10, 1769 is the earliest inaugural date and January 15, 2022 is the latest inaugural date.


How many distinct party affiliations are there?

Rhode Island and Illinois shows an almost even balance between the Republican and Democratic parties.

figure.3

#........... graph ................................
fig3 <- ggplot(GovernorTermDates,
               aes(x = as.factor(Affiliation), y = as.factor(State),
                   group = State,
                   fill = "#C76c56")) +
  geom_density_ridges2(aes(point_fill = "black"),
                      color = "#660000",
                      rel_min_height = 0.07,
                      jittered_points = TRUE,
                      position = "raincloud",
                      alpha = 0.7) +
  xlab("parties") +
  ylab("") +
  theme_minimal() +
  theme(legend.position = "none",
        axis.text.x = element_text(angle = 45,
                                     hjust = 1)) +
  scale_y_discrete(guide = guide_axis(check.overlap = TRUE)) +
  scale_x_discrete(guide = guide_axis(check.overlap = TRUE)) +
  ggtitle("U.S. Governor Party Affiliations by State")
  
fig3


As you can see Rhode Island has 11 different party affiliations and Illinois has 6.

StateAffil <- GovernorTermDates %>%
  group_by(State) %>%
  summarise(Affiliation = n_distinct(Affiliation),
            .groups = "rowwise") %>%
  arrange(desc(Affiliation)) %>%
  mutate(Affiliation = as.numeric(Affiliation),
         State = factor(State, State)) %>% 
  ungroup()

StateAffil %>% 
  kbl(caption = "Party Count By State") %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>%
  row_spec(0, bold = TRUE) %>% 
  row_spec(1,
           color = "#ffffff",
           background = "#cb181d") %>% 
  row_spec(13,
           color = "#ffffff",
           background = "#cb181d") %>% 
  scroll_box(height = "300px")
Party Count By State
State Affiliation
Rhode Island 11
North Carolina 10
Connecticut 9
Maryland 9
Massachusetts 8
Mississippi 8
Vermont 8
Delaware 7
Georgia 7
Maine 7
New Hampshire 7
Virginia 7
Illinois 6
Kentucky 6
Louisiana 6
Ohio 6
Pennsylvania 6
South Carolina 6
Alabama 5
Florida 5
Indiana 5
New Jersey 5
New York 5
Tennessee 5
Texas 5
Alaska 4
California 4
Minnesota 4
Missouri 4
Wisconsin 4
Arkansas 3
Colorado 3
Iowa 3
Kansas 3
Michigan 3
Nebraska 3
Nevada 3
Oregon 3
South Dakota 3
Washington 3
Arizona 2
Hawaii 2
Idaho 2
Montana 2
New Mexico 2
North Dakota 2
Oklahoma 2
Utah 2
West Virginia 2
Wyoming 2
GovAffil <- GovernorTermDates %>%
  group_by(Affiliation) %>%
  summarise(Governor = n_distinct(Governor),
            .groups = "rowwise") %>%
  arrange(desc(Governor)) %>%
  mutate(Governor = as.numeric(Governor),
         Affiliation = factor(Affiliation, Affiliation)) %>% 
  ungroup()

GovAffil %>% 
  kbl(caption = "Governor Count By Party") %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>% 
  row_spec(0, bold = TRUE) %>%
  row_spec(1,
           color = "#ffffff",
           background = "#cb181d") %>% 
  row_spec(2,
           color = "#ffffff",
           background = "#f0565b") %>%
  scroll_box(height = "300px")
Governor Count By Party
Affiliation Governor
Democratic 1077
Republican 928
Democratic-Republican 148
Whig 90
Independent 63
Federalist 59
National Republican 23
Military Governor 7
Populist 6
Know Nothing 5
Constitutional Union 4
Silver 4
Country 3
Farmer-Labor 3
National Union 3
Nullifier 3
Anti-Federalist 2
Anti-Masonic 2
Conservative 2
Fusion 2
Law and Order 2
Wisconsin Progressive 2
A Connecticut 1
Alaskan Independence 1
Extralegal 1
Greenback 1
Jacksonian 1
Liberal Republican 1
Progressive 1
Prohibition 1
Re-Adjuster 1
Reform 1
Rhode Island 1
Toleration 1

figure.3b

#........... color palette ..................
political3b <- colorRampPalette(paletteer_c("grDevices::Reds 3", 30))(34)
#........... graph ................................
fig3b <- ggplot(GovAffil,
               aes(x = Affiliation,
                   y = Governor,
                   fill = as.factor(Governor),
                   size = Governor)) +
  geom_col(fill = political3b,
           alpha = 0.5) +
  xlab("Affiliation") +
  ylab("Governors") +
  theme_minimal() +
  theme(legend.position = "none",
        panel.grid.major = element_blank(),
        panel.grid.minor = element_blank()) +
  theme(axis.text.x = element_text(angle = 45,
                                   hjust = 1)) +
  ggtitle("U.S. Governor Party Affiliation Totals")

fig3b

answer

There are 34 distinct affiliations combined. Interestingly, Rhode Island has the most affiliations with 11.


Which state has the most governors so far?

Governors <- aggregate(x = StateGov_df$governor_full_name,
                  by = list(StateGov_df$state_full_name),
                  FUN = length)

Governors[ order(Governors$x) , ] -> Governors
#......... table ............
Governors %>% 
  kbl(caption = "Governor Count By State") %>% 
  kable_classic("hover",
                "condensed",
                full_width = F,
                html_font = "Optima") %>% 
  row_spec(0, bold = TRUE) %>% 
  scroll_box(height = "250px")
Governor Count By State
Group.1 x
11 Hawaii 8
2 Alaska 14
44 Utah 18
47 Washington 23
26 Montana 25
3 Arizona 27
36 Oklahoma 28
28 Nevada 30
31 New Mexico 32
12 Idaho 33
34 North Dakota 33
41 South Dakota 33
50 Wyoming 33
48 West Virginia 36
37 Oregon 38
5 California 40
23 Minnesota 41
27 Nebraska 41
6 Colorado 43
15 Iowa 43
13 Illinois 45
9 Florida 46
49 Wisconsin 47
16 Kansas 48
22 Michigan 49
38 Pennsylvania 49
43 Texas 49
14 Indiana 51
4 Arkansas 57
25 Missouri 57
42 Tennessee 58
1 Alabama 61
32 New York 61
17 Kentucky 63
18 Louisiana 63
24 Mississippi 64
8 Delaware 66
20 Maryland 67
35 Ohio 70
7 Connecticut 74
19 Maine 75
33 North Carolina 75
39 Rhode Island 76
21 Massachusetts 79
30 New Jersey 80
45 Vermont 82
46 Virginia 85
10 Georgia 90
29 New Hampshire 90
40 South Carolina 91

figure.4

#............. color palette ..................
political4 <- colorRampPalette(paletteer_c("ggthemes::Classic Blue", 30))(50)
#.......... graph ...................
fig4 <- Governors %>% 
  dplyr::select(Group.1, x) %>% 
  dplyr::group_by(Group.1) %>% 
  dplyr::mutate(Avrg = mean(Governors$x),
                Min = min(Governors$x),
                Max = max(Governors$x)) %>% 
  dplyr::arrange(Avrg) %>% 
  dplyr::ungroup() %>% 
  dplyr::mutate(States = factor(Group.1,
                                levels = unique(Group.1))) %>% 
  ggplot(aes(x = x, y = States)) +
  geom_segment(aes(x = Min, xend = Max, yend = States),
               alpha = 0.5, color = "white") +
  geom_bar(aes(fill = States),
           alpha = 0.75,
           width = 0.2,
           stat = "identity",
           position = "dodge") +
  geom_point(alpha = 0.4,
             color = "black") +
  geom_point(aes(x = Avrg),
             size = 2,
             color = "#0000CC",
             alpha = 0.5) +
  scale_fill_manual(values = political4) +
  scale_y_discrete(guide = guide_axis(check.overlap = TRUE)) +
  theme_minimal() +
  ylab("") +
  theme(legend.position = "none",
        panel.grid.major = element_blank(),
        panel.grid.minor = element_blank()) +
  ggtitle("Total U.S. Governors by State")

fig4

answer

South Carolina has the most governors served with 91 governors


Which governor had the shortest term served?

# EarliestTerm <- GovernorTermDates[which.min(GovernorTermDates$Entered), "Governor"]
# 
# GovTerm <- GovernorTermDates %>% 
#   select(Governor, Entered, Left) %>%
#   arrange(Entered)
# 
# GovTerm

figure.5A

#............. color palette ..................
# political5 <- colorRampPalette(paletteer_c("ggthemes::Classic Red", 30))(2587)
#.......... graph ...................
# fig5A <- ggplot(GovTerm,
#                  aes(x = Term@start,
#                      y = ServTot)) +
#   xlab("Term Years") +
#   ylab("") +
#   theme_minimal(base_size = 10) +
#   theme(panel.grid.major.x = element_blank(),
#         panel.grid.minor = element_blank())
#   
# fig5A +
#   geom_line(size = 1, color = "#F76D5E") +
#   geom_point(color = "#A50021",
#              alpha = 1/3) +
#   theme(legend.position = "none") +
#   ggtitle("U.S Governors Total Terms by Weeks")

answer

#...... convert to character ..............
# GovernorTermDates$Governor <- as.character(GovernorTermDates$Governor)
#......... answer .......................
# GovName <- GovernorTermDates[which.min(GovernorTermDates$Served), "Governor"]
# string5a <- "served"
# GovTerm <- GovernorTermDates[which.min(GovernorTermDates$Served), "ServTot"]
# string5b <- "days for the shortest term"
# ShortestTermAnswer <- paste(GovName,
#                             string5a,
#                             GovTerm,
#                             string5b, sep = " ")
# ShortestTermAnswer


What is the inaugural pattern for each state?

# AffiliationPattern <- StateGov_df %>%
#   group_by(State = state_full_name,
#            Affiliation = party_affiliation) %>% 
#   summarise(CountAffil = n(),
#             .groups = "rowwise") %>%
#   mutate(State = factor(State, State),
#          Affiliation = as.factor(Affiliation)) %>% 
#   arrange(desc(CountAffil)) %>% 
#   ungroup()

figure.6

#............. color palette ..................
# political6 <- colorRampPalette(paletteer_c("ggthemes::Red-Blue-White Diverging", 30))(34)
#.......... graph ...................
# fig6 <- ggplot(AffiliationPattern,
#                  aes(x = State,
#                      y = CountAffil)) +
#   xlab("Political Affiliation Size By State") +
#   ylab("Affiliation Count") +
#   theme_minimal(base_size = 11) +
#   theme(panel.grid.major.x = element_blank(),
#         panel.grid.minor = element_blank()) +
#   theme(axis.text.x = element_text(angle = 45,
#                                    hjust = 1))
# 
# fig6 +
#   geom_point(aes(color = Affiliation,
#                  size = CountAffil),
#              alpha = 1/3) +
#   scale_size_area(guide = "none",
#                   max_size = 11) +
#   scale_color_manual(values = political6) +
#   scale_x_discrete(expand = c(0.045, 0.045)) +
#   ylim(0, 75) +
#   theme(legend.position = "none") +
#   ggtitle("U.S Governors Party Affiliations")
#.............. month table ...................................
# AffilMonthlyPattern <- AffiliationPattern %>% 
#   group_by(State, Affiliation, CountAffil) %>% 
#   summarise(MonthIn = format(as.Date(paste0(StateGov_df$took_office),
#                                      format = "%Y-%m-%d"),
#                              "%B"),   # Full month name
#             MonthOut = format(as.Date(paste0(StateGov_df$left_office),
#                                       format = "%Y-%m-%d"),
#                               "%B"),
#             Months = paste(MonthIn, "-", MonthOut),
#             .groups = "rowwise") %>% 
#   arrange() %>% 
#   ungroup()
#................. remove duplicates .....................................
# AffilMonthlyPattern[!duplicated(AffilMonthlyPattern), ] -> AffilMonthlyPattern
#................. factor .........................
# AffilMonthlyPattern$Months <- factor(AffilMonthlyPattern$Months)

figure.6b

# fig6b <- ggplot(AffilMonthlyPattern,
#                  aes(x = Affiliation,
#                      y = CountAffil)) +
#   xlab("") +
#   ylab("Affiliation Count") +
#   theme_minimal(base_size = 11) +
#   theme(panel.grid.major.x = element_blank(),
#         panel.grid.minor = element_blank()) +
#   theme(axis.text.x = element_text(angle = 45,
#                                    hjust = 1))
# 
# fig6b +
#   geom_boxplot() +
#   geom_point(aes(color = Affiliation,
#                  size = CountAffil),
#              alpha = 1/3) +
#   scale_size_area() +
#   scale_x_discrete(expand = c(0.03, 0.03)) +
#   scale_color_manual(values = political6) +
#   ylim(0, 65) +
#   theme(legend.position = "none") +
#   ggtitle("U.S Governors Monthly")

answer


ANALYSIS

SESSION INFO

sessionInfo()
## R version 4.1.2 (2021-11-01)
## Platform: x86_64-w64-mingw32/x64 (64-bit)
## Running under: Windows 10 x64 (build 19044)
## 
## Matrix products: default
## 
## locale:
## [1] LC_COLLATE=English_United States.1252 
## [2] LC_CTYPE=English_United States.1252   
## [3] LC_MONETARY=English_United States.1252
## [4] LC_NUMERIC=C                          
## [5] LC_TIME=English_United States.1252    
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
##  [1] sessioninfo_1.2.2      ggthemes_4.2.4         paletteer_1.4.0       
##  [4] RColorBrewer_1.1-2     kableExtra_1.3.4       janitor_2.1.0         
##  [7] lubridate_1.8.0        knitr_1.37             forcats_0.5.1         
## [10] stringr_1.4.0          purrr_0.3.4            readr_2.1.2           
## [13] tidyr_1.2.0            tidyverse_1.3.1        ProjectTemplate_0.10.2
## [16] tibble_3.1.6           digest_0.6.29          mosaic_1.8.3          
## [19] ggridges_0.5.3         mosaicData_0.20.2      ggformula_0.10.1      
## [22] ggstance_0.3.5         dplyr_1.0.8            Matrix_1.4-0          
## [25] ggplot2_3.3.5          lattice_0.20-45       
## 
## loaded via a namespace (and not attached):
##  [1] fs_1.5.2          webshot_0.5.2     httr_1.4.2        tools_4.1.2      
##  [5] backports_1.4.1   bslib_0.3.1       utf8_1.2.2        R6_2.5.1         
##  [9] DBI_1.1.2         colorspace_2.0-2  withr_2.4.3       tidyselect_1.1.1 
## [13] gridExtra_2.3     leaflet_2.1.0     compiler_4.1.2    cli_3.1.1        
## [17] rvest_1.0.2       xml2_1.3.3        ggdendro_0.1.23   labeling_0.4.2   
## [21] prismatic_1.1.0   sass_0.4.0        mosaicCore_0.9.0  scales_1.1.1     
## [25] systemfonts_1.0.4 svglite_2.1.0     rmarkdown_2.11    pkgconfig_2.0.3  
## [29] htmltools_0.5.2   labelled_2.9.0    highr_0.9         dbplyr_2.1.1     
## [33] fastmap_1.1.0     htmlwidgets_1.5.4 rlang_1.0.1       readxl_1.3.1     
## [37] rstudioapi_0.13   jquerylib_0.1.4   farver_2.1.0      generics_0.1.2   
## [41] jsonlite_1.7.3    crosstalk_1.2.0   magrittr_2.0.2    Rcpp_1.0.8       
## [45] munsell_0.5.0     fansi_1.0.2       lifecycle_1.0.1   stringi_1.7.6    
## [49] yaml_2.2.2        snakecase_0.11.0  MASS_7.3-55       plyr_1.8.6       
## [53] grid_4.1.2        ggrepel_0.9.1     crayon_1.5.0      haven_2.4.3      
## [57] splines_4.1.2     hms_1.1.1         pillar_1.7.0      reprex_2.0.1     
## [61] glue_1.6.1        evaluate_0.14     modelr_0.1.8      vctrs_0.3.8      
## [65] tzdb_0.2.0        tweenr_1.0.2      cellranger_1.1.0  gtable_0.3.0     
## [69] polyclip_1.10-0   rematch2_2.1.2    assertthat_0.2.1  xfun_0.29        
## [73] ggforce_0.3.3     broom_0.7.12      viridisLite_0.4.0 ellipsis_0.3.2